body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f7d9e6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.calendar-container {
    margin-bottom: 20px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.calendar-current-date {
    font-size: 24px;
    font-weight: bold;
    color: #ff69b4;
}

.calendar-navigation span {
    cursor: pointer;
    font-size: 24px;
    color: #ff69b4;
}

.calendar-body {
    border: 2px solid #ff69b4;
    border-radius: 10px;
    padding: 10px;
}

.calendar-weekdays,
.calendar-dates {
    list-style-type: none;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    text-align: center;
}

.calendar-weekdays li {
    font-weight: bold;
    color: #ff69b4;
}

.calendar-dates li {
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.calendar-dates li:hover {
    background-color: #ffe6f1;
}

.calendar-dates li.inactive {
    color: #ccc;
}

.calendar-dates li.active {
    background-color: #ff69b4;
    color: #fff;
}

.dish-details {
    margin-bottom: 20px;
    background-color: #fff;
    border: 2px solid #ff69b4;
    border-radius: 10px;
    padding: 20px;
}

.dish-name {
    font-size: 24px;
    font-weight: bold;
    color: #ff69b4;
    margin-bottom: 10px;
}

.dish-info {
    display: flex;
}

.dish-image {
    width: 200px;
    height: 200px;
    background-color: #ffe6f1;
    margin-right: 20px;
    border-radius: 10px;
}

.dish-meta div {
    margin-bottom: 5px;
}

.dish-people-section {
    margin-top: 10px;
}

.type-section {
    margin-bottom: 20px;
    background-color: #fff;
    border: 2px solid #ff69b4;
    border-radius: 10px;
    padding: 20px;
}

.type-section h3 {
    color: #ff69b4;
}

.type-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
}

.typefood {
    padding: 10px;
    background-color: #ffe6f1;
    text-align: center;
    cursor: pointer;
    border-radius: 10px;
    transition: background-color 0.3s;
}

.typefood:hover {
    background-color: #ffb6c1;
}

.typefood.selected {
    background-color: #ff69b4;
    color: #fff;
}