/* Filter Buttons */
.bg-filter-section {
     background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.02) 0px,
    rgba(255, 255, 255, 0.05) 1px,
    transparent 1px,
    transparent 10px
  );
}
.filter-buttons {
    padding: 0.5rem;
     background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.02) 0px,
    rgba(255, 255, 255, 0.05) 1px,
    transparent 1px,
    transparent 10px
  );
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    justify-content: center;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #c88812;
    background: #e3a127;
    color: #000000;
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.filter-btn:hover {
    background: #f8f9fa;
    border-color: #021341;
    color: #021341;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.15);
}

.filter-btn.active {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    border-color: #1e3a8a;
    color: white;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.filter-btn i {
    font-size: 1rem;
}

/* Pagination Styles */
.custom-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.custom-pagination .page-item {
    margin: 0;
}

.custom-pagination .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    background: white;
    color: #495057;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.custom-pagination .page-link:hover {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: white;
    border-color: #1e3a8a;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(30, 58, 138, 0.25);
}

.custom-pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    border-color: #1e3a8a;
    color: white;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
    transform: scale(1.05);
}

.custom-pagination .page-item.disabled .page-link {
    opacity: 0.4;
    cursor: not-allowed;
    background: #f8f9fa;
    border-color: #e9ecef;
    color: #adb5bd;
    box-shadow: none;
}

.custom-pagination .page-item.disabled .page-link:hover {
    transform: none;
    box-shadow: none;
}

/* Loading Overlay */
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    border-radius: 12px;
}

.spinner-border {
    width: 3.5rem;
    height: 3.5rem;
    border-width: 0.4rem;
    color: #1e3a8a;
}

/* Responsive */
@media (max-width: 768px) {
    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .custom-pagination .page-link {
        min-width: 40px;
        height: 40px;
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
}
