body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 20px;
    font-size: 16px;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

h1, h2, h3, h4 {
    margin-top: 0;
}

h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

.meal-summary {
    background-color: #f8f9fa;
    color: #333;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.day-card {
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.day-header {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 18px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 5px;
}

.meal-option {
    margin-bottom: 20px;
}

.meal-description {
    font-style: italic;
    margin-bottom: 10px;
}

.button-group {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.choice-button {
    flex: 1;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #e2749a; /* Default color for Carys */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    margin-top: 20px;
    max-width: 150px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.choice-button:not(:last-child) {
    margin-right: 10px;
}

.choice-button:hover {
    background-color: #d26382; /* Darker shade on hover */
    transform: translateY(-3px); /* Adds hover animation */
}

.choice-button.active {
    background-color: #c75470; /* Active state color */
    color: white;
    font-weight: bold;
}

.menu-items {
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    text-align: left;
}

.menu-item {
    margin: 5px 0;
}

#emailLink {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

#emailLink:hover {
    background-color: #45a049;
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }
    .container {
        padding: 15px;
    }
    .choice-button {
        font-size: 14px;
        padding: 8px;
    }
    .day-card {
        padding: 10px;
    }
}
