/* Sidebar & General UI */
    .text-navy {
        color: #000080;
    }

    .text-bjp-green {
        color: #138808 !important;
    }

    .cursor-pointer {
        cursor: pointer;
    }

    .filter-header {
        border-bottom: 2px solid #FF9933;
        padding-bottom: 10px;
    }

    /* Custom Form Controls */
    .form-check-input:checked {
        background-color: #FF9933;
        border-color: #FF9933;
    }

    .form-select:focus,
    .form-check-input:focus {
        border-color: #FF9933;
        box-shadow: 0 0 0 0.25rem rgba(255, 153, 51, 0.25);
    }

    /* Search Bar */
    .search-container {
        max-width: 700px;
        margin: 30px auto;
    }

    .btn-search {
        background-color: #FF9933;
        border: none;
        color: white;
        padding: 10px 25px;
    }

    .btn-search:hover {
        background-color: #e68a2e;
        color: white;
    }

    /* Tabs */
    .scheme-tabs .nav-link {
        color: #555;
        background: white;
        margin: 0 5px;
        border-radius: 8px;
    }

    .scheme-tabs .nav-link.active {
        background-color: #FF9933 !important;
        color: white !important;
        box-shadow: 0 4px 12px rgba(255, 153, 51, 0.3);
    }

    /* Yojana Cards */
    .yojana-card {
        border: none;
        border-radius: 12px;
        padding: 20px;
        transition: transform 0.2s;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

    .bg-blue-soft {
        background-color: #f0f4ff;
    }

    .bg-orange-soft {
        background-color: #fff9f2;
    }

    .border-orange {
        border-color: #FF9933 !important;
    }

    .border-blue {
        border-color: #000080 !important;
    }

    .yojana-title {
        color: #d35400;
        font-weight: 700;
        font-size: 1.2rem;
    }

    .yojana-desc {
        color: #555;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .badge.bg-orange {
        background-color: #FF9933;
    }

    .badge.bg-blue {
        background-color: #000080;
    }

    /* Toggle Icon Styles */
    .toggle-icon {
        width: 20px;
        height: 20px;
        display: inline-flex !important;
        /* Ensures it doesn't collapse */
        align-items: center;
        justify-content: center;
        font-size: 0.85rem;
        cursor: pointer;
        color: #138808 !important;
        /* Your Green color */
        transition: all 0.2s ease;
    }

    /* Ensure the parent header doesn't hide the icon */
    .filter-section-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    /* Filter Section Header */
    .filter-section-header {
        cursor: pointer;
        user-select: none;
    }

    .filter-section-header:hover .toggle-icon {
        color: #FF9933;
    }

    /* Pagination Styles - BJP Theme */
    .pagination-wrapper {
        margin-top: 30px;
        display: flex;
        justify-content: center;
    }

    .bjp-pagination .page-link {
        color: #000080;
        background-color: white;
        border: 1px solid #dee2e6;
        padding: 8px 14px;
        margin: 0 3px;
        border-radius: 6px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .bjp-pagination .page-link:hover {
        color: white;
        background-color: #FF9933;
        border-color: #FF9933;
    }

    .bjp-pagination .page-item.active .page-link {
        color: white;
        background-color: #FF9933;
        border-color: #FF9933;
        box-shadow: 0 4px 10px rgba(255, 153, 51, 0.3);
    }

    .bjp-pagination .page-item.disabled .page-link {
        color: #adb5bd;
        background-color: white;
        border-color: #dee2e6;
    }

    .bjp-pagination .page-link:focus {
        box-shadow: 0 0 0 0.25rem rgba(255, 153, 51, 0.25);
        z-index: 0;
    }

    /* Custom Pagination - Two Numbers Format */
    .custom-pagination-info {
        text-align: center;
        color: #666;
        font-size: 0.9rem;
        margin-bottom: 15px;
    }