/* ==============================================
   시공갤러리 게시판 스킨 스타일
   ============================================== */

/* Custom Checkbox Styles */
.custom-checkbox {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid #0000001A;
    border-radius: 4px;
    background-color: transparent;
    cursor: pointer;
    position: relative;
    
    transition: all 0.2s ease;
}

.custom-checkbox:hover {
    border: 1px solid rgba(0, 0, 0, 0.20);
}

.custom-checkbox:checked {
    border-color: rgba(255, 255, 255, 0.1);
    background-image: url('/theme/webdot/img/gallery-checkbox.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.custom-checkbox:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(139, 111, 71, 0.1);
}

/* Filter Count */
.filter-count {
    margin-left: 2px;
}

/* Pagination Buttons */
.pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    color: #424242;
    background-color: #fff;
    border: 1px solid #F5F5F5;
    transition: all 0.2s;
    text-decoration: none;
}

.pagination-btn:hover {
    border-color: var(--main-brown01);
    color: var(--main-brown01);
    background-color: #FAFAFA;
}

.pagination-btn.active {
    background-color: var(--main-brown01) !important;
    color: #fff !important;
    border-color: var(--main-brown01) !important;
    cursor: default;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .filter-panel {
        /* min-width: 90vw !important; */
        /* left: 0; */
        /* left: 50% !important;
        transform: translateX(-50%); */
    }
/* 
    .filter-panel .grid-cols-5 {
        grid-template-columns: repeat(2, 1fr);
    } */

    .pagination-btn {
        min-width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
