:root {
    --background-color: #f0f0f0;
    --text-color: #333;
    --container-bg: #fff;
    --button-bg: #4CAF50;
    --button-text: white;
    --number-bg: #f0f0f0;
    --number-text: #333;
}

body.dark-mode {
    --background-color: #333;
    --text-color: #f0f0f0;
    --container-bg: #444;
    --button-bg: #555;
    --button-text: #f0f0f0;
    --number-bg: #555;
    --number-text: #f0f0f0;
}

body {
    font-family: sans-serif;
    display: flex;
    flex-direction: column; /* Changed to column to accommodate theme toggle */
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: var(--background-color);
    color: var(--text-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
    text-align: center;
    background-color: var(--container-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

h1 {
    color: var(--text-color);
    transition: color 0.3s ease;
}

#generator-btn {
    padding: 10px 20px;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 5px;
    border: none;
    background-color: var(--button-bg);
    color: var(--button-text);
    margin-bottom: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.menu-display { /* Remove dinner menu specific styling */
    display: none;
}

/* Remove Form Styles */
.contact-form { /* Remove contact form specific styling */
    display: none;
}

#disqus_thread {
    margin-top: 40px; /* Add some space above the comments */
    width: 100%; /* Take full width of its parent (body) */
    max-width: 700px; /* Max width for readability, adjust as needed */
    padding: 0 20px; /* Add some horizontal padding */
    box-sizing: border-box; /* Include padding in the width calculation */
}

/* Teachable Machine specific styles */
#webcam-container {
    margin-top: 20px;
    border: 2px solid var(--text-color);
    border-radius: 8px;
    overflow: hidden;
}

#label-container {
    margin-top: 20px;
    font-size: 1.2rem;
    color: var(--text-color);
}

#label-container div {
    padding: 5px;
}