.calendar {
    width: 100%;
    background-color: transparent;
    border: 1px solid var(--dark-blue);
    padding: var(--padding-base);
    padding-left: var(--padding-lg);
    padding-right: var(--padding-lg);
    margin-bottom: 0;
}

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

.date-title {
    color: var(--dark-blue);
    font-size: 8px;
    text-align: center;
}

.circle {
    width: 40px;
    height: 40px;
    background-color: var(--dark-blue);

    -webkit-mask-image: var(--mask-url), linear-gradient(black, black) !important;
    mask-image: var(--mask-url), linear-gradient(black, black) !important;

    -webkit-mask-repeat: no-repeat, no-repeat !important;
    mask-repeat: no-repeat, no-repeat !important;

    -webkit-mask-position: center, center !important;
    mask-position: center, center !important;

    -webkit-mask-size: 40%, 100% !important;
    mask-size: 40%, 100% !important;

    -webkit-mask-composite: xor !important;
    mask-composite: exclude !important;
}

.calendar-weekdays {
    margin-top: var(--one-section-margin);
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: var(--one-section-margin);
    font-size: 12px;
    color: var(--dark-blue);
    font-weight: 600;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.calendar-day {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    font-weight: 600;
    font-size: 14px;
    background-color: var(--white);
    border: 1px solid var(--dark-blue);
    color: var(--dark-blue);
}

.calendar-day.today {
    background: color-mix(in srgb, var(--dark-blue) 70%, transparent);
    color: var(--white);
    font-weight: 700;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.calendar-day.selected {
    background-color: var(--blue);
    border: 1px solid var(--blue);
    color: var(--white);
    font-weight: 700;
    transform: scale(1.1);
    box-shadow: 0 2px 8px color-mix(in srgb, var(--blue) 20%, transparent);
}

.calendar-day.other-month {
    background-color: color-mix(in srgb, var(--dark-blue) 50%, transparent);
    opacity: 0.6;
}

.calendar-day.inactive {
    background-color: color-mix(in srgb, var(--dark-blue) 50%, transparent);
    opacity: 0.6;
}