/* General Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

h2, h3, h4, h5, h6 {
    margin-bottom: 0.5rem;
}

.container-fluid {
    padding: 0 1rem;
}

/* Responsive Header Section */
.d-flex.justify-content-between.align-items-center {
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.basket-container {
    margin-top: 0.5rem;
}

/* Responsive Info Cards */
.bg-light.rounded.shadow-sm {
    padding: 1rem;
    margin-bottom: 1rem;
}

.label-text {
    font-size: 0.9rem;
}

.value-text .badge {
    font-size: 1rem;
    padding: 0.4rem 0.8rem;
}

/* Buttons Section */
.btn {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.btn-lg {
    font-size: 1rem;
    padding: 0.5rem 1.2rem;
}

/* Search Form Styles */
.hop-card .form-group {
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .hop-card .form-group {
        margin-bottom: 0.5rem;
    }
}

/* Filter Sidebar */
.card-title {
    font-size: 1.1rem;
}

.card-body.hop-card ul {
    padding-left: 0;
}

.card-body.hop-card li {
    list-style: none;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.card-body.hop-card input[type="checkbox"] {
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .d-none.d-md-block {
        display: none !important;
    }
}

/* Search Results Section */
#searchResults {
    gap: 1rem;
}

@media (max-width: 576px) {
    #searchResults {
        display: flex;
        flex-direction: column;
    }
}

/* Floating Basket */
.floating-basket {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    transition: all 0.3s ease;
}

.floating-basket:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

.floating-basket button {
    width: 50px;
    height: 50px;
    font-size: 20px;
}

.floating-basket .badge {
    font-size: 10px;
    padding: 3px 6px;
}

/* Modals */
.modal-content {
    padding: 1rem;
}

.modal-header h5 {
    font-size: 1.2rem;
}

.modal-footer {
    justify-content: center;
}

/* Seat Map */
.seat-map-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    font-size: 1rem;
    font-weight: bold;
}

/* Responsive Grid Adjustments */
@media (max-width: 576px) {
    .row > div[class*="col-"] {
        margin-bottom: 1rem;
    }
}

@media (min-width: 1200px) {
    .container-fluid {
        padding: 0 3rem;
    }
}
