.search-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    border: none;
}

.search-header {
    background-color: #de5420;
    color: white;
    padding: 15px 20px;
    border-radius: 10px 10px 0 0;
    font-weight: bold;
}

.search-body {
    padding: 30px;
}

.form-label {
    font-weight: 500;
    color: #424553;
}

.btn-search {
    background-color: #de5420;
    color: white;
    padding: 10px 30px;
    border-radius: 5px;
    border: none;
    transition: all 0.3s;
    width: 100%;
    font-weight: bold;
}

.btn-search:hover {
    background-color: #c94617;
    color: white;
    transform: translateY(-2px);
}

.carousel-item img {
    border-radius: 10px;
    height: 400px;
    object-fit: cover;
}

/* Select2 Customization */
.select2-container--default .select2-selection--single {
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    height: 38px;
    padding: 5px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 36px;
}