:root {
    /*--background-color: #d97c7c !important;
    --color: blue;*/
    --bs-body-color: #2a2a2a !important;
    --bs-body-bg: #E3EFFC !important;

    --footer-border-top: #d1d1d1;
    --footer-background-color: #e0e0e0;
}

.navbar {
    background-color: #d97c7c !important;
}

body {
    font-family: "GeorgiaLocal", "Georgia", 'DM Sans', sans-serif !important;
    
    /*font-size: 110% !important;*/
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    margin: 10px;
}

@font-face {
    font-family: 'GeorgiaLocal';
    src: url('/static/fonts/Georgia.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


.site-footer {
    margin-top: auto;
    padding: 1.25rem 0;
    border-top: 1px solid var(--footer-border-top);
    font-size: 0.95rem;
    background-color: var(--footer-background-color);

    .footer-nav a {
        color: inherit;
        text-decoration: none;
        transition: color 0.1s ease;

        &:hover {
            color: black;
        }
    }
}

.consultation-card {
    max-width: 720px;
    margin: 1.5rem auto 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.consultation-card__header {
    background: #5b93d1;
    color: #fff;
    padding: 1.5rem 2rem;
}

.consultation-card__title {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 400;
}

.consultation-card__body {
    padding: 1.5rem 2rem 2rem;
}

.info-box {
    background: #eaf3fc;
    border: 1px solid #bcd6f0;
    border-left: 4px solid #5b93d1;
    border-radius: 6px;
    padding: 1rem 1.25rem;
    /*margin-top: 1.25rem;*/
    font-size: 0.95rem;
}

.booking-success__icon {
    width: 3.2rem;
    height: 3.2rem;
    line-height: 3.2rem;
    border-radius: 50%;
    background: #d4edda;
    color: #1e7e34;
    font-size: 1.6rem;
    margin: 0 auto 1rem;
}

.privacy-page {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-page h2 {
    font-size: 1.2rem;
    margin-top: 1.75rem;
    margin-bottom: 0.5rem;
}

.topics-list {
    list-style: none;
    font-size: 14px;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 0;
}

.topics-list li {
    position: relative;
    padding-left: 16px;
}

.topics-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-sage, #5b93d1);
    font-style: normal;
}

.calendar-section {
    margin-top: 2rem;
}

.calendar-section__title {
    margin-bottom: 1rem;
    text-align: center;
}

.calendar-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.calendar-nav__btn {
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 50%;
    width: 2.2rem;
    height: 2.2rem;
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
}

.calendar-nav__btn:hover {
    background: #f0f0f0;
}

.calendar-nav__range {
    min-width: 12rem;
    text-align: center;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.5rem;
}

@media (max-width: 900px) {
    .calendar-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .calendar-grid {
        grid-template-columns: 1fr;
    }
}

.calendar-day {
    border: 1px solid #d5d5d5;
    border-radius: 8px;
    padding: 0.6rem;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.calendar-day--past {
    background: #eaeaea;
    opacity: 0.6;
}

.calendar-day__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 0.4rem;
}

.calendar-day__num {
    font-weight: 600;
}

.calendar-day__name {
    font-size: 0.85rem;
    color: #666;
}

.calendar-day__slots {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.calendar-slot {
    border: 1px solid #bcd6f0;
    background: #eef5fd;
    color: #1a1a1a;
    border-radius: 6px;
    padding: 0.35rem 0.4rem;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background-color .15s ease;
}

.calendar-slot:hover:not(:disabled) {
    background: #dcebfa;
}

.calendar-slot--booked {
    background: #f8d7da;
    border-color: #f1aeb5;
    color: #842029;
    cursor: not-allowed;
}

.calendar-slot--disabled,
.calendar-day--past .calendar-slot {
    background: #e2e2e2;
    border-color: #d0d0d0;
    color: #999;
    cursor: not-allowed;
}

.calendar-slot:disabled {
    cursor: not-allowed;
}
