 .search-card {
        background: #fff;
        border-radius: 18px;
        padding: 20px;
        box-shadow: 0 12px 30px rgba(0,0,0,0.08);
        animation: fadeInUp .5s ease;
    }

    @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(15px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .form-control,
    .form-select {
        height: 48px;
        border-radius: 10px;
        font-size: 14px;
    }

    .btn-search {
        height: 48px;
        border-radius: 10px;
        font-weight: 600;
        padding: 0 20px;
    }

    .btn-reset {
        height: 48px;
        border-radius: 10px;
        font-weight: 600;
    }

    .select2-container .select2-selection--single {
        height: 48px;
        border-radius: 10px;
        border: 1px solid #dee2e6;
    }

    .select2-selection__rendered {
        line-height: 48px !important;
        padding-left: 10px !important;
    }

    .select2-selection__arrow {
        height: 48px !important;
    }
.search-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    padding: 12px 0;
}

/* kasih jarak supaya konten tidak ketutup */
.body-padding {
    padding-top: 110px;
}