.calendar-filter-container {
    padding: 24px 20px;
    min-height: auto;
    overflow: visible;
    height: auto;
}
.inner-filter-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}
.calendar-filter-subtitle {
    font-size: 13px;
    font-weight: 100;
    margin-bottom: 15px;
    color: #fff;
}
.calendar-options {
    margin-bottom: 15px;
}
.calendar-category-options {
    display: flex;
    flex-direction: column;
    /*gap: 8px;*/
    /*margin-bottom: 4px;*/
}
.calendar-tag-options {
    display: flex;
    flex-direction: column;
}
.calendar-option-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease;
    position: relative;
}
.calendar-option-checkbox {
    position: relative;
    width: 18px;
    height: 18px;
    margin-right: 10px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 2px solid #ddd;
    border-radius: 3px;
    background-color: #fff;
    transition: all 0.2s ease;
    flex-shrink: 0;
}
.calendar-option-checkbox::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    transition: transform 0.2s ease;
}
.calendar-option-checkbox:hover {
    border-color: #2a6f7e;
}
.calendar-option-checkbox:checked {
    background-color: #ff9a00;
    border-color: #ff9a00;
}
.calendar-option-checkbox:checked::after {
    transform: rotate(45deg) scale(1);
}
.calendar-option-text {
    font-size: 13px;
    color: #fff;
    transition: all 0.2s ease;
}
.calendar-option-label:hover .calendar-option-text {
    color: #ff9a00;
}
.calendar-option-checkbox:checked + .calendar-option-text {
    color: #ff9a00;
    font-weight: 500;
}
.calendar-tag-options .calendar-option-label {
    flex: 0 1 auto;
    min-width: fit-content;
    max-width: calc(50% - 6px);
}
#filter-calendar {
    margin-top: 15px;
}
.filter-calendar {
    font-family: 'IBM Plex Sans', sans-serif;
    background: #ffffff;
    color: #292c2d;
    border: 1px solid #ddd;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    max-width: 100%;
}
.filter-calendar-inner {
    padding: 20px;
}
.filter-calendar-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
    padding: 0px 10px;
    background: #f8f9fa;
    border-bottom: 1px solid #ddd;
}
.filter-calendar-controls a {
    color: #46494a;
    text-decoration: none;
    font-size: 24px;
    padding: 0px 10px;
    border-radius: 5px;
    transition: background-color 0.2s;
    cursor: pointer;
    display: block;
}
.filter-calendar-controls a:hover {
    background-color: #efefef;
}
.filter-calendar-month-year {
    font-size: 14px;
    font-weight: 600;
    color: #045d71;
}
.filter-calendar-body {
    position: relative;
    z-index: 1;
}
.filter-calendar-inner-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    padding: 10px;
}
.filter-calendar-wrapper {
    display: flex;
    flex-direction: column;
}
.filter-calendar-day-header {
    background: #f8f9fa;
    padding: 5px 3px;
    text-align: center;
    font-weight: 500;
    font-size: 10px;
    color: #575757;
    border-bottom: 1px solid #ddd;
}
.filter-calendar-day {
    background: #fff;
    border: 1px solid #e9ecef;
    padding: 4px 2px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    min-height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    border-radius: 4px;
}
.filter-calendar-day:hover {
    background: #f8f9fa;
}
.filter-calendar-day.other-month {
    color: #ccc;
    background: #fafafa;
    cursor: default;
}
.filter-calendar-day.today {
    border: solid 2px #03a9f4;
    color: #272727;
    font-weight: 500;
}
.filter-calendar-day.past {
    color: #ccc;
    cursor: not-allowed;
    background: #fafafa;
}
.filter-calendar-day.clickable {
    cursor: pointer;
}
.filter-calendar-day.clickable:hover {
    background: #e3f2fd !important;
    transform: scale(1.05);
}
.calendar-filter-submit-btn {
    background-color: #1d4c57 !important;
    border: solid #2A6F7E 1px !important;
    margin-top: 10px;
    width: 100%;
    border-radius: 8px;
}
.calendar-filter-submit-btn:hover {
    background-color: #245c6b !important;
    border-color: #1d4c57 !important;
}
.filter-calendar-day.selected {
    background: #2a6f7e !important;
    color: white !important;
    font-weight: 600;
}
.filter-calendar-day.in-range {
    background: #cce5ff !important;
    color: #252525 !important;
}
.filter-calendar-day.range-start {
    background: #2a6f7e !important;
    color: white !important;
    font-weight: 600;
    border-radius: 4px 0 0 4px;
}
.filter-calendar-day.range-end {
    background: #2a6f7e !important;
    color: white !important;
    font-weight: 600;
    border-radius: 0 4px 4px 0;
}
.filter-calendar-day.hover-in-range {
    background: #e3f2fd !important;
    color: #252525 !important;
}
.filter-calendar-day.hover-range-start {
    background: #90caf9 !important;
    color: #252525 !important;
    font-weight: 600;
    border-radius: 4px 0 0 4px;
}
.filter-calendar-day.hover-range-end {
    background: #90caf9 !important;
    color: #252525 !important;
    font-weight: 600;
    border-radius: 0 4px 4px 0;
}

