body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(to bottom, rgba(255, 218, 185, 0.9), rgba(255, 182, 146, 0.6));
    background-attachment: fixed;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    text-align: center;
    color: #d96c4a; /* мягкий персиково-коралловый */
    margin-bottom: 20px;
    font-size: 2.5em;
    animation: fadeIn 1s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
}

.day-circle {
    width: 40px;
    height: 40px;
    background-color: #f9a17b; /* светлый персик */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.1em;
    margin: 5px;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
}

.holiday-circle {
    width: 40px;
    height: 40px;
    background-color: #f48b6d; /* более насыщенный персик */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.1em;
    margin: 5px;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
}

.day-circle:hover {
    transform: scale(1.1);
    background-color: #ffb390; /* подсветка при наведении */
}

.schedule {
    display: none;
}

.card.active {
    display: block;
}

.day-circle-row {
    display: flex;
    justify-content: center;
    margin: 5px 0;
}

.card {
    background-color: #f7a678; /* мягкий персиковый */
    border-radius: 10px;
    padding: 15px;
    margin: 10px;
    width: 250px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s, box-shadow 0.3s;
    color: white;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.card h2 {
    margin-bottom: 10px;
    font-size: 1.8em;
    text-align: center;
}

.card h3 {
    margin-bottom: 10px;
    font-size: 1.0em;
    text-align: center;
    color: #fff5f2; /* очень светлый оттенок */
}

.separator {
    border-top: 1px solid white;
    margin: 10px 0;
}

.time {
    color: white;
    font-weight: bold;
}

.subject {
    margin-bottom: 18px;
}

.flower {
    font-size: 1.5em;
    color: #ff66b3;
}

.circle {
    display: inline-block;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    text-align: center;
    line-height: 25px;
    font-size: 0.75em;
}

.lek {
    background-color: #FF69B4;
    color: white;
}

.pr {
    background-color: #8FBC8F;
    color: white;
}

