/* Search section */
.search-section {
    position: relative;
    /* z-index: 1000; */
    /* margin-bottom: -80px; */
    margin-top: 20px;
    margin-bottom: 20px;
}

.search-container {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

/* Carousel section */
.carousel-section {
    /* margin-bottom: 10px; */
}

.carousel-item img {
    object-fit: cover;
    height: 60vh;
    width: 100%;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

/* Trips section */
.trips-section {
    padding: 50px 0;
    /* background-color: #f8f9fa; */
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.trip-card {
    height: 100%;
    transition: transform 0.3s;
}

.trip-card:hover {
    transform: translateY(-5px);
}

.trip-details {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 0.9em;
    color: #666;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .search-section {
        margin-bottom: 20px;
        margin-top: 20px;
    }

    .search-container {
        margin: 0 15px;
    }

    .carousel-item img {
        height: 40vh;
    }

    .trip-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .carousel-item img {
        height: 30vh;
    }
}

/* Add these styles */
.select2-container {
    width: 100% !important;
}

/* Make select2 match Bootstrap's style
 .select2-container .select2-selection--single {
    height: 38px;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 38px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 36px;
} */

.carousel-image {
    height: 500px;
    object-fit: cover;
    width: 100%;
}