
/* Date Filter Wireframe Style */
.date-filter-wireframe {
    padding: 20px;
    margin: 20px 0;
    border-radius: 15px;
}

.date-filter-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
    padding: 0 50px;
}

/* Navigation Arrows */
.date-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #f8f9fa;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #495057;
    font-size: 16px;
}

.date-nav-arrow:hover {
    color: white;
}

.date-nav-arrow.prev {
    left: 0;
}

.date-nav-arrow.next {
    right: -10;
}

/* Date Items Container */
.date-items-container {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.date-items-container::-webkit-scrollbar {
    display: none;
}

/* Date Circle Buttons */
.date-circle {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border: 1px solid #aa4126;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #495057;
    position: relative;
}

.date-circle:hover {
    border-color: #aa4126;
    background: #aa41261a;
    transform: scale(1.05);
}

.date-circle.active {
    border-color: #aa4126;
    background: #aa4126;
    color: white;
    box-shadow: 0 1px 20px #aa412647;
}

.date-circle.today {
}

.date-circle.today::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #aa4126;
}

.date-circle.active.today::after {
    background: white;
}

.date-day-number {
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 2px;
}

.date-day-name {
    font-size: 12;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Month/Year Display */
.current-month-year {
    text-align: center;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    font-family: "DM Serif Display", serif;
    font-weight: 600;
    color: #aa4126;
}

/* Responsive */
@media (max-width: 768px) {
    .date-filter-wrapper {
        padding: 0 40px;
    }
    
    .date-nav-arrow {
        width: 35px;
        height: 35px;
        font-size: 14px;
        margin: auto;
    }
    
    .date-circle {
        width: 60px;
        height: 60px;
    }
    
    .date-day-number {
        font-size: 18px;
    }
    
    .date-day-name {
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .date-items-container {
        gap: 10px;
    }
    
    .date-circle {
        width: 55px;
        height: 55px;
    }
    
    
}


p.text-center {
    max-width: 300px;
    margin: auto;
}