:root {
    --bs-primary: #ff6b35;
    --bs-primary-rgb: 255, 107, 53;
    --primary-orange: #ff6b35;
    --dark-orange: #e55a2b;
    --light-orange: #ff8c65;
    --dark-bg: #1a1a1a;
    --card-bg: #2d2d2d;
}

.btn-primary {
    background-color: #ff6b35;
    border-color: #ff6b35;
}

.btn-primary:hover {
    background-color: #e55a2b;
    border-color: #e55a2b;
}

.text-primary {
    color: #ff6b35 !important;
}

.bg-primary {
    background-color: #ff6b35 !important;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.hero-section {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 80px 0;
}

.search-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 30px;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.search-header {
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    padding: 2rem 0;
}

.search-results-card {
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
}

.search-results-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

.btn-outline-primary {
    color: var(--primary-orange);
    border-color: var(--primary-orange);
}

.btn-outline-primary:hover {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
}

.university-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.university-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.university-logo {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}

.badge-featured {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    font-size: 0.75rem;
}

.badge-custom {
    background-color: var(--primary-orange);
}

.footer {
    background-color: #212529;
    color: white;
}

.footer a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #ff6b35;
}

.stats-section {
    background-color: #f8f9fa;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff6b35;
}

/* Select2 Custom Styling untuk Bootstrap */
.select2-container--default .select2-selection--single {
    height: calc(1.5em + 0.75rem + 2px) !important;
    line-height: 1.5 !important;
    padding: 0.375rem 0.75rem !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    border: 1px solid #ced4da !important;
    border-radius: 0.375rem !important;
    background-color: #fff !important;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 1.5 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    color: #212529 !important;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #6c757d !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: calc(1.5em + 0.75rem) !important;
    width: 20px !important;
    top: 0 !important;
    right: 6px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #6c757d transparent transparent transparent !important;
    border-style: solid !important;
    border-width: 5px 4px 0 4px !important;
    height: 0 !important;
    left: 50% !important;
    margin-left: -4px !important;
    margin-top: -2px !important;
    position: absolute !important;
    top: 50% !important;
    width: 0 !important;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #6c757d transparent !important;
    border-width: 0 4px 5px 4px !important;
}

.select2-container--default .select2-selection--single:focus {
    border-color: #86b7fe !important;
    outline: 0 !important;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25) !important;
}

.select2-container--default .select2-dropdown {
    border: 1px solid #ced4da !important;
    border-radius: 0.375rem !important;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.select2-container--default .select2-results__option {
    padding: 0.375rem 0.75rem !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #0d6efd !important;
    color: #fff !important;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #e9ecef !important;
    color: #212529 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .select2-container--default .select2-selection--single {
        height: calc(1.5em + 0.75rem + 2px) !important;
    }
    
    .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: calc(1.5em + 0.75rem) !important;
    }
}

/* Pagination Custom Styling */
.pagination .page-link {
    color: #ff6b35 !important;
    border-color: #dee2e6 !important;
    background-color: #fff !important;
}

.pagination .page-link:hover {
    color: #fff !important;
    background-color: #ff6b35 !important;
    border-color: #ff6b35 !important;
}

.pagination .page-link:focus {
    color: #fff !important;
    background-color: #ff6b35 !important;
    border-color: #ff6b35 !important;
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 53, 0.25) !important;
}

.pagination .page-item.active .page-link {
    background-color: #ff6b35 !important;
    border-color: #ff6b35 !important;
    color: #fff !important;
}

.pagination .page-item.disabled .page-link {
    color: #6c757d !important;
    background-color: #fff !important;
    border-color: #dee2e6 !important;
}

.filter-sidebar {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
}

.filter-title {
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 1rem;
}

.navbar-nav .nav-link.active {
    color: #ff6b35 !important;
}
.footer .active {
    color: #ff6b35 !important;
}