body {
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f0f0;
    transition: background-color 0.3s, color 0.3s;
}

body.dark-mode {
    background-color: #333;
    color: #f0f0f0;
}

.mode-selection {
    margin-bottom: 2rem;
    display: flex;
    gap: 1rem;
}

.mode-btn {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border: 2px solid #4CAF50;
    border-radius: 5px;
    background-color: transparent;
    color: #4CAF50;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.mode-btn.active,
.mode-btn:hover {
    background-color: #4CAF50;
    color: white;
}

.container {
    text-align: center;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
}

body.dark-mode .container {
    background-color: #444;
}

button {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    background-color: #4CAF50;
    color: white;
    cursor: pointer;
}

#partnership-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

#partnership-form label {
    text-align: left;
    font-weight: bold;
    margin-bottom: 0.2rem;
}

#partnership-form input[type="text"],
#partnership-form input[type="email"],
#partnership-form textarea {
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box; /* Include padding in width */
}

#partnership-form textarea {
    resize: vertical; /* Allow vertical resizing */
}

#partnership-form button[type="submit"] {
    background-color: #007bff; /* A different color for the submit button */
    color: white;
    padding: 1rem;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    margin-top: 1rem;
}

#partnership-form button[type="submit"]:hover {
    background-color: #0056b3;
}

.top-bar {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.lang-selection {
    display: flex;
    border: 1px solid #888;
    border-radius: 5px;
    overflow: hidden;
}

.lang-btn {
    padding: 0.3rem 0.6rem;
    font-size: 0.9rem;
    border: none;
    background-color: transparent;
    color: #333;
    cursor: pointer;
}

.lang-btn.active {
    background-color: #333;
    color: white;
}

body.dark-mode .lang-btn {
    color: #f0f0f0;
}

body.dark-mode .lang-btn.active {
    background-color: #f0f0f0;
    color: #333;
}

#theme-toggle {
    /* position: absolute; top: 1rem; right: 1rem; -- removed */
    padding: 0.5rem;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
}

.dinner-result-box {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

#dinner-result {
    /* margin-top: 1.5rem; -- removed */
    font-size: 1.5rem;
    font-weight: bold;
    padding: 1rem 2rem;
    border-radius: 10px;
    background-color: #fdd835; /* Using one of the lotto colors */
    color: #333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2), 0 4px 6px rgba(0, 0, 0, 0.1);
}

body.dark-mode #dinner-result {
    background-color: #fdd835; /* Keep it bright in dark mode */
    color: #333;
}