/* van_rental.css - Complete styling for both frontend and admin */

/* =============================================
   FRONTEND VAN RENTAL SECTION
   ============================================= */

/* Van Rentals Section */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
#van-rentals {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 600px;

    .section-title {
        color: #2c3e50;
        font-weight: 700;
        margin-bottom: 1rem;
        position: relative;
    }
    
    .title-underline {
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, #ff8c42, #ff6b35);
        border-radius: 2px;
    }
    
    /* Main Van Carousel Container */
    .van-carousel-container {
        position: relative;
        overflow: hidden;
        padding: 0 20px;
        margin: 2rem 0;
    }
    
    .van-carousel {
        overflow: hidden;
        width: 100%;
    }
    
    .van-carousel-track {
        display: flex;
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        gap: 20px;
    }
    
    .van-card-wrapper {
        flex: 0 0 350px;
        max-width: 350px;
    }
    
    /* Van Card Styles */
    .van-card {
        background: white;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        overflow: hidden;
        height: 100%;
        display: flex;
        flex-direction: column;
        border: none;
    }
    
    
    .van-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }
    
    .van-image-container {
        position: relative;
        background: #f8f9fa;
    }
    
    .van-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        transition: transform 0.4s ease;
    }
    
    .van-card:hover .van-image {
        transform: scale(1.1);
    }
    
    .van-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        z-index: 2;
    }
    
    .van-badge .badge {
        padding: 0.6rem 1rem;
        border-radius: 25px;
        font-weight: 600;
        font-size: 0.8rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        animation: pulse 2s infinite;
    }
    
    .van-status-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.8);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 3;
        backdrop-filter: blur(2px);
    }
    
    .van-card-body {
        padding: 1.5rem;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }
    
    .van-title {
        color: #2c3e50;
        font-weight: 700;
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }
    
    .price-amount {
        font-size: 1.3rem;
        font-weight: 700;
        color: #28a745;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    }
    
    .van-specs {
        margin-bottom: 1rem;
    }
    
    .spec-item {
        background: #f8f9fa;
        border-radius: 8px;
        padding: 0.75rem 0.5rem;
        text-align: center;
        transition: all 0.3s ease;
        border: 2px solid transparent;
        max-height: 80px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .spec-item:hover {
        background: #fff3e6;
        border-color: #ff8c42;
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(255, 140, 66, 0.2);
    }
    
    .spec-item i {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        color: #ff8c42;
        transition: transform 0.3s ease;
    }
    
    .spec-item:hover i {
        transform: scale(1.1);
    }
    
    .spec-item small {
        font-weight: 600;
        color: #6c757d;
        font-size: 0.75rem;
    }
    
    .van-description {
        color: #6c757d;
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        flex-grow: 1;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .van-actions {
        margin-top: auto;
        gap: 0.5rem;
    }
    
    .van-actions .btn {
        border-radius: 8px;
        font-weight: 600;
        padding: 0.7rem 1rem;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        border: 2px solid transparent;
    }
    
    .van-actions .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }
    
    .van-actions .btn-outline-primary {
        border-color: #ff8c42;
        color: #ff8c42;
    }
    
    .van-actions .btn-outline-primary:hover {
        background: #ff8c42;
        color: white;
        border-color: #ff8c42;
    }
    
    .van-actions .btn-success {
        background: linear-gradient(45deg, #28a745, #20c997);
        border: none;
    }
    
    .van-actions .btn-success:hover {
        background: linear-gradient(45deg, #218838, #1ba085);
        transform: translateY(-2px) scale(1.02);
    }
    
    .van-actions .btn.disabled {
        opacity: 0.6;
        cursor: not-allowed;
        transform: none !important;
    }
    
    /* Carousel Navigation Buttons */
    .van-carousel-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: white;
        border: 2px solid #ff8c42;
        color: #ff8c42;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 10;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        font-size: 1.2rem;
        font-weight: bold;
    }
    
    .van-carousel-btn:hover {
        background: #ff8c42;
        color: white;
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 8px 25px rgba(255, 140, 66, 0.3);
    }
    
    .van-carousel-btn:active {
        transform: translateY(-50%) scale(0.95);
    }
    
    .van-carousel-prev {
        left: 10px;
    }
    
    .van-carousel-next {
        right: 10px;
    }
    
    .van-carousel-btn[style*="opacity: 0.5"] {
        cursor: not-allowed;
        pointer-events: none;
    }
    
    /* No Vans Message */
    .no-vans-message {
        padding: 4rem 2rem;
        text-align: center;
        background: white;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        margin: 2rem auto;
        max-width: 600px;
    }
    
    .no-vans-message i {
        color: #dee2e6;
        margin-bottom: 1.5rem;
        opacity: 0.7;
    }
    
    .no-vans-message h4 {
        color: #6c757d;
        margin-bottom: 1rem;
        font-weight: 600;
    }
    
    .no-vans-message p {
        color: #adb5bd;
        margin-bottom: 2rem;
        line-height: 1.6;
    }
    
    .no-vans-message .btn {
        border-radius: 25px;
        padding: 0.75rem 2rem;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .carousel-container {
        position: relative;
        margin: auto;
        overflow: hidden;
    }

    .carousel-viewport {
        overflow: hidden;
        width: 100%;
    }

    .carousel-track {
        padding: 30px 0;
        display: flex;
        gap: 16px;
        transition: transform 0.4s ease-in-out;
    }

    .cards {
        background: #eee;
        border-radius: 10px;
        text-align: center;
        height: auto;
        font-size: 1.5em;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);  
        overflow: hidden;
        flex: 0 0 calc((100% - 32px) / 3); /* 3 cards with 2 gaps */
    }



    /* Responsive widths for fewer cards */
    @media (max-width: 768px) {
        .cards {
            flex: 0 0 calc((100% - 16px) / 2); /* 2 cards with 1 gap */
        }

        .progprogress {
        flex-direction: row !important;
    }
    }

    @media (max-width: 480px) {
        .cards {
            flex: 0 0 100%; /* 1 card per slide */
        }
    }

    /* Nav buttons */
    .nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        font-size: 2rem;
        background: rgba(0, 0, 0, 0.5);
        border: none;
        border-radius: 50%;
        color: #fff;
        padding: 0.5em 1em;
        cursor: pointer;
        z-index: 1;
        transition: all 300ms;
    }
    .nav:hover {
        background: black;
    }

    .prev {
        left: 0;
    }

    .next {
        right: 0;
    }
}


/* =============================================
   VAN BOOKING PAGE STYLES
   ============================================= */

body.van-booking-page {
    background-color: #f8f9fa;
    padding-top: 130px;

    .booking-header {
        background: linear-gradient(135deg, #feab25 0%, #feab25 100%);
        color: white;
        padding: 2rem 0;
        margin-bottom: 2rem;
        box-shadow: 0 4px 20px rgba(255, 140, 66, 0.3);
    }
    
    .booking-header h1 {
        font-weight: 700;
        margin-bottom: 0.5rem;
    }
    
    .booking-header p {
        font-size: 1.1rem;
        opacity: 0.9;
    }
    
    .van-showcase {
        background: white;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        margin-bottom: 2rem;
        position: sticky;
        top: 20px;
    }
    
    .van-showcase .van-image {
        width: 100%;
        height: 300px;
        object-fit: contain;
    }
    @media (max-width: 1200px) {
        .van-showcase .van-image {
            height: 100%;
        }
    }
    
    .van-details {
        padding: 2rem;
    }
    
    .van-details h3 {
        color: #2c3e50;
        font-weight: 700;
        margin-bottom: 1.5rem;
    }
    
    .price-highlight {
        background: linear-gradient(45deg, #28a745, #20c997);
        color: white;
        padding: 1.5rem;
        border-radius: 12px;
        text-align: center;
        margin-bottom: 1.5rem;
        box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    }
    
    .price-highlight h4 {
        margin-bottom: 0.5rem;
        font-size: 1.5rem;
    }
    
    .van-specs-grid {
        margin-bottom: 2rem;
    }
    
    .van-specs-grid .spec-item {
        background: #f8f9fa;
        border-radius: 12px;
        padding: 1.2rem;
        text-align: center;
        transition: all 0.3s ease;
        border: 2px solid transparent;
        height: 100%;
    }
    
    .van-specs-grid .spec-item:hover {
        background: #fff3e6;
        border-color: #ff8c42;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(255, 140, 66, 0.2);
    }
    
    .van-specs-grid .spec-item i {
        color: #ff8c42;
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }
    
    .van-specs-grid .spec-item .fw-bold {
        font-size: 1.1rem;
        color: #2c3e50;
        margin-bottom: 0.25rem;
    }
    
    .booking-form {
        background: white;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }
    
    .form-step {
        display: none;
        padding: 2.5rem;
    }
    
    .form-step.active {
        display: block;
    }
    
    .form-step h4 {
        color: #2c3e50;
        font-weight: 700;
        margin-bottom: 2rem;
        padding-bottom: 1rem;
        border-bottom: 2px solid #f8f9fa;
    }
    
    .step-indicator {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        padding: 2rem;
        border-bottom: 1px solid #dee2e6;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background: #6c757d;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        margin-right: 1rem;
        transition: all 0.3s ease;
        font-size: 1.1rem;
    }
    
    .step-number.active {
        background: #ff8c42;
        box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
        transform: scale(1.1);
    }
    
    .step-number.completed {
        background: #28a745;
        box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    }
    
    .step-item {
        transition: all 0.3s ease;
    }
    
    .step-item .fw-bold {
        color: #2c3e50;
        margin-bottom: 0.25rem;
    }
    
    .form-control,
    .form-select {
        border-radius: 10px;
        border: 2px solid #e9ecef;
        padding: 0.875rem 1rem;
        transition: all 0.3s ease;
        font-size: 1rem;
    }
    
    .form-control:focus,
    .form-select:focus {
        border-color: #ff8c42;
        box-shadow: 0 0 0 0.25rem rgba(255, 140, 66, 0.25);
        outline: none;
    }
    
    .form-label {
        font-weight: 600;
        color: #495057;
        margin-bottom: 0.75rem;
    }
    
    .btn-modern {
        border-radius: 10px;
        padding: 0.875rem 2rem;
        font-weight: 600;
        transition: all 0.3s ease;
        border: none;
    }
    
    .btn-modern:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }
    
    .btn-primary.btn-modern {
        background: linear-gradient(45deg, #ff8c42, #feab25);
    }
    
    .btn-primary.btn-modern:hover {
        background: linear-gradient(45deg, #ff7a2b, #feab25);
    }
    
    .btn-success.btn-modern {
        background: linear-gradient(45deg, #28a745, #20c997);
    }
    
    .btn-outline-light.btn-modern {
        border: 2px solid rgba(255, 255, 255, 0.8);
        color: white;
    }
    
    .btn-outline-light.btn-modern:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: white;
    }
    
    .progress-bar-custom {
        height: 8px;
        background: #e9ecef;
        border-radius: 10px;
        overflow: hidden;
        margin-top: 1.5rem;
    }
    
    .progress-fill {
        height: 100%;
        background: linear-gradient(90deg, #ff8c42, #feab25);
        border-radius: 10px;
        transition: width 0.5s ease;
    }
    
    .suggestions-list {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border: 1px solid #ddd;
        border-top: none;
        border-radius: 0 0 10px 10px;
        max-height: 200px;
        overflow-y: auto;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .suggestions-list li {
        padding: 0.75rem 1rem;
        cursor: pointer;
        border-bottom: 1px solid #f8f9fa;
        transition: background-color 0.2s ease;
    }
    
    .suggestions-list li:hover {
        background-color: #fff3e6;
    }
    
    .feature-list {
        list-style: none;
        padding: 0;
    }
    
    .feature-list li {
        padding: 0.75rem 0;
        border-bottom: 1px solid #f8f9fa;
        display: flex;
        align-items: center;
    }
    
    .feature-list li:last-child {
        border-bottom: none;
    }
    
    .feature-list .check {
        color: #28a745;
        margin-right: 0.75rem;
        font-size: 1.1rem;
    }
    
    .feature-list .times {
        color: #dc3545;
        margin-right: 0.75rem;
        font-size: 1.1rem;
    }
    
    .cost-breakdown {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        border-radius: 12px;
        padding: 1.5rem;
        margin-top: 1.5rem;
        border: 1px solid #dee2e6;
    }
    
    .cost-breakdown h6 {
        color: #2c3e50;
        font-weight: 700;
        margin-bottom: 1rem;
    }
    
    .cost-breakdown .d-flex {
        margin-bottom: 0.5rem;
    }
    
    .cost-breakdown .fw-bold {
        font-size: 1.1rem;
        color: #28a745;
    }
    
    .file-upload-area {
        border: 2px dashed #ddd;
        border-radius: 12px;
        padding: 2rem;
        text-align: center;
        transition: all 0.3s ease;
        cursor: pointer;
        background: #f8f9fa;
    }
    
    .file-upload-area:hover {
        border-color: #ff8c42;
        background-color: #fff3e6;
    }
    
    .file-upload-area.dragover {
        border-color: #ff8c42;
        background-color: #fff3e6;
        transform: scale(1.02);
    }
    
    .file-upload-area i {
        color: #6c757d;
        margin-bottom: 1rem;
    }
    
    .preview-container img {
        max-width: 100%;
        max-height: 120px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .alert-info {
        background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
        border: none;
        border-left: 4px solid #2196f3;
        border-radius: 8px;
    }
    
    .alert-warning {
        background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
        border: none;
        border-left: 4px solid #ff9800;
        border-radius: 8px;
    }
}


/* =============================================
   ADMIN VAN MANAGEMENT STYLES
   ============================================= */

/* Van image thumbnail in admin table */
.van-image-thumb {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 5px;
}

/* Admin van management cards */
.admin-van-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.admin-van-card .card-header {
    background: linear-gradient(90deg, #f8f9fa, #e9ecef);
    border-bottom: 1px solid #dee2e6;
    padding: 1rem 1.5rem;
    font-weight: 600;
}

/* Admin stats boxes improvements */
.small-box {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.small-box:hover {
    transform: translateY(-3px);
}

.small-box .inner {
    padding: 20px;
}

.small-box .icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 70px;
    opacity: 0.15;
}

/* Form styling improvements */
.admin-form-group {
    margin-bottom: 1.5rem;
}

.admin-form-control {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.admin-form-control:focus {
    border-color: #ff8c42;
    box-shadow: 0 0 0 0.2rem rgba(255, 140, 66, 0.25);
}

/* Custom file input styling */
.custom-file-label {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    padding: 0.75rem 1rem;
}

.custom-file-input:focus~.custom-file-label {
    border-color: #ff8c42;
    box-shadow: 0 0 0 0.2rem rgba(255, 140, 66, 0.25);
}

/* Admin buttons */
.admin-btn {
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.admin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Admin table improvements */
.admin-table {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.admin-table .table {
    margin-bottom: 0;
}

.admin-table .table th {
    background-color: #f8f9fa;
    border-top: none;
    font-weight: 600;
    color: #495057;
    padding: 1rem;
}

.admin-table .table td {
    padding: 1rem;
    vertical-align: middle;
}

/* Action buttons in admin */
.admin-action-buttons .btn {
    margin: 0 2px;
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
}

/* Modal improvements for admin */
.admin-modal .modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.admin-modal .modal-header {
    background: linear-gradient(135deg, #ff8c42 0%, #fb993d 100%);
    color: white;
    border-radius: 15px 15px 0 0;
    border-bottom: none;
}

/* Price input styling */
.price-input {
    background: linear-gradient(45deg, #f8f9fa, #e9ecef);
    font-weight: 600;
    color: #28a745;
}

/* Status badges */
.status-badge {
    padding: 0.5rem 0.75rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.8rem;
}

/* Featured badge animation */
.badge-warning {
    animation: pulse 2s infinite;
}

/* Current image display in admin */
.current-image {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.current-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Admin navigation tabs */
.nav-tabs .nav-link {
    border: none;
    border-radius: 8px 8px 0 0;
    color: #6c757d;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link.active {
    background: linear-gradient(135deg, #ff8c42, #fcca5d);
    color: white;
    border: none;
}

.nav-tabs .nav-link:hover {
    background: #f8f9fa;
    border-color: transparent;
}

/* =============================================
   ANIMATIONS AND UTILITIES
   ============================================= */

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 193, 7, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading animation */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */

@media (max-width: 1200px) {
    .van-carousel-container {
        padding: 0 40px;
    }

    .van-card-wrapper {
        flex: 0 0 320px;
        max-width: 320px;
    }

    .van-showcase {
        position: static;
        margin-bottom: 2rem;
    }
}

@media (max-width: 992px) {
    .booking-header {
        padding: 1.5rem 0;
    }

    .booking-header h1 {
        font-size: 1.75rem;
    }

    .van-details {
        padding: 1.5rem;
    }

    .form-step {
        padding: 2rem;
    }

    .step-indicator {
        padding: 1.5rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    #van-rentals {
        padding: 3rem 0;
    }

    .van-carousel-container {
        padding: 0 20px;
        margin: 1rem 0;
    }

    .van-card-wrapper {
        flex: 0 0 280px;
        max-width: 280px;
    }

    .van-carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .van-carousel-prev {
        left: -10px;
    }

    .van-carousel-next {
        right: -10px;
    }

    .van-card-body {
        padding: 1rem;
    }

    .van-image-container {
        height: 180px;
    }

    .van-title {
        font-size: 1.1rem;
    }

    .price-amount {
        font-size: 1.1rem;
    }

    .spec-item {
        padding: 0.5rem;
        min-height: 70px;
    }

    .spec-item i {
        font-size: 1rem;
    }

    .booking-header {
        padding: 1rem 0;
    }

    .booking-header h1 {
        font-size: 1.5rem;
    }

    .van-details {
        padding: 1rem;
    }

    .form-step {
        padding: 1.5rem;
    }

    .step-indicator {
        padding: 1rem;
    }

    .step-indicator .d-flex {
        flex-direction: column;
        gap: 1rem;
    }

    .step-item {
        text-align: center;
    }

    .step-number {
        margin: 0 auto 0.5rem;
    }

    .file-upload-area {
        padding: 1.5rem;
    }

    /* Admin responsive */
    .admin-table {
        font-size: 0.9rem;
    }

    .admin-action-buttons .btn {
        padding: 0.2rem 0.4rem;
        font-size: 0.8rem;
    }

    .van-image-thumb {
        width: 50px;
        height: 30px;
    }
}

@media (max-width: 576px) {
    .van-carousel-container {
        padding: 0 10px;
    }

    .van-card-wrapper {
        flex: 0 0 260px;
        max-width: 260px;
    }

    .van-actions {
        flex-direction: column;
        gap: 0.5rem;
    }

    .van-actions .btn {
        width: 100%;
        padding: 0.6rem;
    }

    .van-carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .no-vans-message {
        padding: 2rem 1rem;
        margin: 1rem;
    }

    .booking-header h1 {
        font-size: 1.25rem;
    }

    .form-step {
        padding: 1rem;
    }

    .step-indicator {
        padding: 1rem;
    }

    .van-specs-grid .col-4 {
        margin-bottom: 1rem;
    }

    .feature-list {
        font-size: 0.9rem;
    }

    /* Admin mobile */
    .admin-form-control {
        padding: 0.5rem 0.75rem;
    }

    .small-box .inner {
        padding: 15px;
    }

    .small-box .icon {
        font-size: 50px;
    }
}

/* =============================================
   UTILITY CLASSES
   ============================================= */

.van-loading {
    opacity: 0.7;
    pointer-events: none;
}

.van-error {
    border: 2px solid #dc3545 !important;
}

.van-success {
    border: 2px solid #28a745 !important;
}

.text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.text-truncate-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Print styles */
@media print {

    .van-carousel-btn,
    .van-actions,
    .admin-action-buttons {
        display: none !important;
    }

    .van-card,
    .admin-van-card {
        box-shadow: none;
        border: 1px solid #ddd;
        break-inside: avoid;
    }
}


/* Van Rental Management Styles */

/* Van Management Card Styles */
.van-management-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.van-management-card .card-header {
    background: linear-gradient(90deg, #f8f9fa, #e9ecef);
    border-bottom: 1px solid #dee2e6;
    padding: 1rem 1.5rem;
    font-weight: 600;
}

/* Button Styles */
.btn-modern {
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Van Image Thumbnail */
.van-image-thumb {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 5px;
}

/* Current Van Image in Edit Modal */
.current-van-image {
    max-width: 200px;
    height: auto;
    border-radius: 8px;
}

/* View Van Image */
.view-van-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Van Specification Box */
.van-spec-box {
    text-align: center;
    padding: 0.75rem;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    background-color: #f8f9fa;
}

/* Van List Container */
.van-list-container {
    max-height: 200px;
    overflow-y: auto;
}

.van-list-item {
    padding: 0.25rem 0;
    border-bottom: 1px solid #f1f1f1;
}

.van-list-item:last-child {
    border-bottom: none;
}

/* Modal Styles */
.van-modal {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.van-modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px 15px 0 0;
}

.van-modal-header .close span {
    color: white;
}

/* Form Control Styles */
.van-form-control {
    border-radius: 8px;
    border: 1px solid #ced4da;
    padding: 0.75rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.van-form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* Action Buttons */
.action-buttons .btn {
    margin: 0 2px;
    padding: 0.25rem 0.5rem;
}

/* Badge Styles */
.van-management {
    .badge {
        padding: 0.5rem 0.75rem;
        border-radius: 50px;
        font-weight: 500;
    }
}

/* Table Styles */
.table th {
    background-color: #f8f9fa;
    border-top: none;
    font-weight: 600;
    color: #495057;
}

/* Responsive Design */
@media (max-width: 768px) {
    .van-management-card .card-header h3 {
        font-size: 1.2rem;
    }

    .van-spec-box {
        margin-bottom: 1rem;
    }

    .action-buttons .btn {
        margin: 2px 0;
        width: 100%;
    }
}

/* Additional utility classes for spacing */
.me-1 {
    margin-right: 0.25rem;
}

.me-2 {
    margin-right: 0.5rem;
}

.me-3 {
    margin-right: 1rem;
}

/* Loading and Animation States */
.van-form-control:disabled {
    background-color: #f8f9fa;
    opacity: 0.6;
}

/* Form Group Spacing */
.form-group {
    margin-bottom: 1rem;
}

/* Form Label Styling */
.form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

/* Small Badge for Sidebar Icons */
.small-badge {
    font-size: 0.6rem;
    padding: 0.2rem 0.4rem;
}

/* Logo Styles */
.logo-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.logo-responsive {
    width: 40px;
    height: 40px;
    display: none;
}

.logo-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #495057;
}

/* Sidebar Footer Styles */
.sidebar .footer {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.sidebar-icons a {
    flex: 1;
    text-align: center;
    padding: 0.5rem;
}

/* Content Wrapper Adjustments */
.content-wrapper {
    background-color: #f4f4f4;
}

/* Alert Enhancements */
.alert {
    border-radius: 8px;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Data Table Enhancements */
.table-responsive {
    border-radius: 8px;
    overflow: hidden;
}

#vanTable {
    margin-bottom: 0;
}

/* Modal Backdrop */
.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.5);
}

/* Button Group Styling */
.btn-group .btn {
    border-radius: 4px;
}

.btn-group .btn:not(:last-child) {
    margin-right: 2px;
}

/* Form Check Styling */
.form-check {
    padding-left: 1.5rem;
}

.form-check-input {
    margin-left: -1.5rem;
}

/* Text Utilities */
.text-success {
    color: #28a745 !important;
}

.text-danger {
    color: #dc3545 !important;
}

.text-primary {
    color: #007bff !important;
}

.text-muted {
    color: #6c757d !important;
}

/* Box Shadow Utilities */
.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

/* Border Radius Utilities */
.rounded {
    border-radius: 0.375rem !important;
}

.rounded-circle {
    border-radius: 50% !important;
}

/* Display Utilities */
.d-block {
    display: block !important;
}

.d-flex {
    display: flex !important;
}

/* Justify Content Utilities */
.justify-content-between {
    justify-content: space-between !important;
}

.justify-content-around {
    justify-content: space-around !important;
}

/* Align Items Utilities */
.align-items-center {
    align-items: center !important;
}

.align-self-center {
    align-self: center !important;
}

/* Position Utilities */
.position-relative {
    position: relative !important;
}

.position-absolute {
    position: absolute !important;
}

/* Top and Start Utilities */
.top-0 {
    top: 0 !important;
}

.start-100 {
    left: 100% !important;
}

/* Transform Utilities */
.translate-middle {
    transform: translate(-50%, -50%) !important;
}

/* Text Decoration Utilities */
.text-decoration-none {
    text-decoration: none !important;
}

/* Hover Effects */
.table-hover tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

/* Form Validation States */
.form-control:invalid {
    border-color: #dc3545;
}

.form-control:valid {
    border-color: #28a745;
}

/* Loading States */
.btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

/* Animation Classes */
.fade {
    transition: opacity 0.15s linear;
}

.fade:not(.show) {
    opacity: 0;
}

.fade.show {
    opacity: 1;
}

/* Custom Scrollbar for Lists */
.van-list-container::-webkit-scrollbar {
    width: 4px;
}

.van-list-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

.van-list-container::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 2px;
}

.van-list-container::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}

/* van_rental.css - Complete styling for both frontend and admin */

/* =============================================
   FRONTEND VAN RENTAL SECTION
   ============================================= */

/* Van Rentals Section */

/** {*/
/*    padding: 0;*/
/*    margin: 0;*/
/*    box-sizing: border-box;*/
/*}*/
/*#van-rentals {*/
/*    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);*/
/*    min-height: 600px;*/

/*    .section-title {*/
/*        color: #2c3e50;*/
/*        font-weight: 700;*/
/*        margin-bottom: 1rem;*/
/*        position: relative;*/
/*    }*/
    
/*    .title-underline {*/
/*        width: 60px;*/
/*        height: 3px;*/
/*        background: linear-gradient(90deg, #ff8c42, #ff6b35);*/
/*        border-radius: 2px;*/
/*    }*/
    
    /* Main Van Carousel Container */
/*    .van-carousel-container {*/
/*        position: relative;*/
/*        overflow: hidden;*/
/*        padding: 0 20px;*/
/*        margin: 2rem 0;*/
/*    }*/
    
/*    .van-carousel {*/
/*        overflow: hidden;*/
/*        width: 100%;*/
/*    }*/
    
/*    .van-carousel-track {*/
/*        display: flex;*/
/*        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);*/
/*        gap: 20px;*/
/*    }*/
    
/*    .van-card-wrapper {*/
/*        flex: 0 0 350px;*/
/*        max-width: 350px;*/
/*    }*/
    
    /* Van Card Styles */
/*    .van-card {*/
/*        background: white;*/
/*        border-radius: 15px;*/
/*        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);*/
/*        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);*/
/*        overflow: hidden;*/
/*        height: 100%;*/
/*        display: flex;*/
/*        flex-direction: column;*/
/*        border: none;*/
/*    }*/
    
    
/*    .van-card:hover {*/
/*        transform: translateY(-8px) scale(1.02);*/
/*        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);*/
/*    }*/
    
/*    .van-image-container {*/
/*        position: relative;*/
/*        background: #f8f9fa;*/
/*    }*/
    
/*    .van-image {*/
/*        width: 100%;*/
/*        height: 200px;*/
        /*margin-bottom: 5px;*/
/*        object-fit: cover;*/
/*        transition: transform 0.4s ease;*/
/*    }*/
    
/*    .van-card:hover .van-image {*/
/*        transform: scale(1.1);*/
/*    }*/
    
/*    .van-badge {*/
/*        position: absolute;*/
/*        top: 15px;*/
/*        right: 15px;*/
/*        z-index: 2;*/
/*    }*/
    
/*    .van-badge .badge {*/
/*        padding: 0.6rem 1rem;*/
/*        border-radius: 25px;*/
/*        font-weight: 600;*/
/*        font-size: 0.8rem;*/
/*        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);*/
/*        animation: pulse 2s infinite;*/
/*    }*/
    
/*    .van-status-overlay {*/
/*        position: absolute;*/
/*        top: 0;*/
/*        left: 0;*/
/*        right: 0;*/
/*        bottom: 0;*/
/*        background: rgba(0, 0, 0, 0.8);*/
/*        display: flex;*/
/*        align-items: center;*/
/*        justify-content: center;*/
/*        z-index: 3;*/
/*        backdrop-filter: blur(2px);*/
/*    }*/
    
/*    .van-card-body {*/
/*        padding: 1.5rem;*/
/*        flex-grow: 1;*/
/*        display: flex;*/
/*        flex-direction: column;*/
/*    }*/
    
/*    .van-title {*/
/*        color: #2c3e50;*/
/*        font-weight: 700;*/
/*        font-size: 1.2rem;*/
/*        margin-bottom: 0.75rem;*/
/*        line-height: 1.3;*/
/*    }*/
    
/*    .price-amount {*/
/*        font-size: 1.3rem;*/
/*        font-weight: 700;*/
/*        color: #28a745;*/
/*        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);*/
/*    }*/
    
/*    .van-specs {*/
/*        margin-bottom: 1rem;*/
/*    }*/
    
/*    .spec-item {*/
/*        background: #f8f9fa;*/
/*        border-radius: 8px;*/
/*        padding: 0.75rem 0.5rem;*/
/*        text-align: center;*/
/*        transition: all 0.3s ease;*/
/*        border: 2px solid transparent;*/
/*        max-height: 80px;*/
/*        display: flex;*/
/*        flex-direction: column;*/
/*        justify-content: center;*/
/*    }*/
    
/*    .spec-item:hover {*/
/*        background: #fff3e6;*/
/*        border-color: #ff8c42;*/
/*        transform: translateY(-3px);*/
/*        box-shadow: 0 4px 12px rgba(255, 140, 66, 0.2);*/
/*    }*/
    
/*    .spec-item i {*/
/*        font-size: 1.2rem;*/
/*        margin-bottom: 0.5rem;*/
/*        color: #ff8c42;*/
/*        transition: transform 0.3s ease;*/
/*    }*/
    
/*    .spec-item:hover i {*/
/*        transform: scale(1.1);*/
/*    }*/
    
/*    .spec-item small {*/
/*        font-weight: 600;*/
/*        color: #6c757d;*/
/*        font-size: 0.75rem;*/
/*    }*/
    
/*    .van-description {*/
/*        color: #6c757d;*/
/*        font-size: 0.9rem;*/
/*        line-height: 1.5;*/
/*        margin-bottom: 1.5rem;*/
/*        flex-grow: 1;*/
/*        display: -webkit-box;*/
/*        -webkit-line-clamp: 3;*/
/*        -webkit-box-orient: vertical;*/
/*        overflow: hidden;*/
/*    }*/
    
/*    .van-actions {*/
/*        margin-top: auto;*/
/*        gap: 0.5rem;*/
/*    }*/
    
/*    .van-actions .btn {*/
/*        border-radius: 8px;*/
/*        font-weight: 600;*/
/*        padding: 0.7rem 1rem;*/
/*        transition: all 0.3s ease;*/
/*        position: relative;*/
/*        overflow: hidden;*/
/*        border: 2px solid transparent;*/
/*    }*/
    
/*    .van-actions .btn:hover {*/
/*        transform: translateY(-2px);*/
/*        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);*/
/*    }*/
    
/*    .van-actions .btn-outline-primary {*/
/*        border-color: #ff8c42;*/
/*        color: #ff8c42;*/
/*    }*/
    
/*    .van-actions .btn-outline-primary:hover {*/
/*        background: #ff8c42;*/
/*        color: white;*/
/*        border-color: #ff8c42;*/
/*    }*/
    
/*    .van-actions .btn-success {*/
/*        background: linear-gradient(45deg, #28a745, #20c997);*/
/*        border: none;*/
/*    }*/
    
/*    .van-actions .btn-success:hover {*/
/*        background: linear-gradient(45deg, #218838, #1ba085);*/
/*        transform: translateY(-2px) scale(1.02);*/
/*    }*/
    
/*    .van-actions .btn.disabled {*/
/*        opacity: 0.6;*/
/*        cursor: not-allowed;*/
/*        transform: none !important;*/
/*    }*/
    
    /* Carousel Navigation Buttons */
/*    .van-carousel-btn {*/
/*        position: absolute;*/
/*        top: 50%;*/
/*        transform: translateY(-50%);*/
/*        width: 50px;*/
/*        height: 50px;*/
/*        border-radius: 50%;*/
/*        background: white;*/
/*        border: 2px solid #ff8c42;*/
/*        color: #ff8c42;*/
/*        display: flex;*/
/*        align-items: center;*/
/*        justify-content: center;*/
/*        cursor: pointer;*/
/*        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);*/
/*        z-index: 10;*/
/*        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);*/
/*        font-size: 1.2rem;*/
/*        font-weight: bold;*/
/*    }*/
    
/*    .van-carousel-btn:hover {*/
/*        background: #ff8c42;*/
/*        color: white;*/
/*        transform: translateY(-50%) scale(1.1);*/
/*        box-shadow: 0 8px 25px rgba(255, 140, 66, 0.3);*/
/*    }*/
    
/*    .van-carousel-btn:active {*/
/*        transform: translateY(-50%) scale(0.95);*/
/*    }*/
    
/*    .van-carousel-prev {*/
/*        left: 10px;*/
/*    }*/
    
/*    .van-carousel-next {*/
/*        right: 10px;*/
/*    }*/
    
/*    .van-carousel-btn[style*="opacity: 0.5"] {*/
/*        cursor: not-allowed;*/
/*        pointer-events: none;*/
/*    }*/
    
    /* No Vans Message */
/*    .no-vans-message {*/
/*        padding: 4rem 2rem;*/
/*        text-align: center;*/
/*        background: white;*/
/*        border-radius: 15px;*/
/*        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);*/
/*        margin: 2rem auto;*/
/*        max-width: 600px;*/
/*    }*/
    
/*    .no-vans-message i {*/
/*        color: #dee2e6;*/
/*        margin-bottom: 1.5rem;*/
/*        opacity: 0.7;*/
/*    }*/
    
/*    .no-vans-message h4 {*/
/*        color: #6c757d;*/
/*        margin-bottom: 1rem;*/
/*        font-weight: 600;*/
/*    }*/
    
/*    .no-vans-message p {*/
/*        color: #adb5bd;*/
/*        margin-bottom: 2rem;*/
/*        line-height: 1.6;*/
/*    }*/
    
/*    .no-vans-message .btn {*/
/*        border-radius: 25px;*/
/*        padding: 0.75rem 2rem;*/
/*        font-weight: 600;*/
/*        transition: all 0.3s ease;*/
/*    }*/

/*    .carousel-container {*/
/*        position: relative;*/
/*        margin: auto;*/
/*        overflow: hidden;*/
/*    }*/

/*    .carousel-viewport {*/
/*        overflow: hidden;*/
/*        width: 100%;*/
/*    }*/

/*    .carousel-track {*/
/*        padding: 30px 0;*/
/*        display: flex;*/
/*        gap: 16px;*/
/*        transition: transform 0.4s ease-in-out;*/
/*    }*/

/*    .cards {*/
/*        background: #eee;*/
/*        border-radius: 10px;*/
/*        text-align: center;*/
/*        height: auto;*/
/*        font-size: 1.5em;*/
/*        box-shadow: 0 4px 6px rgba(0,0,0,0.1);  */
/*        overflow: hidden;*/
        flex: 0 0 calc((100% - 32px) / 3); /* 3 cards with 2 gaps */
/*    }*/



    /* Responsive widths for fewer cards */
/*    @media (max-width: 768px) {*/
/*        .cards {*/
            flex: 0 0 calc((100% - 16px) / 2); /* 2 cards with 1 gap */
/*        }*/

/*        .progprogress {*/
/*        flex-direction: row !important;*/
/*    }*/
/*    }*/

/*    @media (max-width: 480px) {*/
/*        .cards {*/
            flex: 0 0 100%; /* 1 card per slide */
/*        }*/
/*    }*/

    /* Nav buttons */
/*    .nav {*/
/*        position: absolute;*/
/*        top: 50%;*/
/*        transform: translateY(-50%);*/
/*        font-size: 2rem;*/
/*        background: rgba(0, 0, 0, 0.5);*/
/*        border: none;*/
/*        border-radius: 50%;*/
/*        color: #fff;*/
/*        padding: 0.5em 1em;*/
/*        cursor: pointer;*/
/*        z-index: 1;*/
/*        transition: all 300ms;*/
/*    }*/
/*    .nav:hover {*/
/*        background: black;*/
/*    }*/

/*    .prev {*/
/*        left: 0;*/
/*    }*/

/*    .next {*/
/*        right: 0;*/
/*    }*/
/*}*/


/* =============================================
   VAN BOOKING PAGE STYLES
   ============================================= */

/*body.van-booking-page {*/
/*    background-color: #f8f9fa;*/
/*    padding-top: 130px;*/

/*    .booking-header {*/
/*        background: linear-gradient(135deg, #feab25 0%, #feab25 100%);*/
/*        color: white;*/
/*        padding: 2rem 0;*/
/*        margin-bottom: 2rem;*/
/*        box-shadow: 0 4px 20px rgba(255, 140, 66, 0.3);*/
/*    }*/
    
/*    .booking-header h1 {*/
/*        font-weight: 700;*/
/*        margin-bottom: 0.5rem;*/
/*    }*/
    
/*    .booking-header p {*/
/*        font-size: 1.1rem;*/
/*        opacity: 0.9;*/
/*    }*/
    
/*    .van-showcase {*/
/*        background: white;*/
/*        border-radius: 15px;*/
/*        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);*/
/*        overflow: hidden;*/
/*        margin-bottom: 2rem;*/
/*        position: sticky;*/
/*        top: 20px;*/
/*    }*/
    
/*    .van-showcase .van-image {*/
/*        width: 100%;*/
/*        height: 200px;*/
/*        object-fit: contain;*/
/*    }*/
/*    @media (max-width: 1200px) {*/
/*        .van-showcase .van-image {*/
/*            height: 100%;*/
/*        }*/
/*    }*/
    
/*    .van-details {*/
/*        padding: 2rem;*/
/*    }*/
    
/*    .van-details h3 {*/
/*        color: #2c3e50;*/
/*        font-weight: 700;*/
/*        margin-bottom: 1.5rem;*/
/*    }*/
    
/*    .price-highlight {*/
/*        background: linear-gradient(45deg, #28a745, #20c997);*/
/*        color: white;*/
/*        padding: 1.5rem;*/
/*        border-radius: 12px;*/
/*        text-align: center;*/
/*        margin-bottom: 1.5rem;*/
/*        box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);*/
/*    }*/
    
/*    .price-highlight h4 {*/
/*        margin-bottom: 0.5rem;*/
/*        font-size: 1.5rem;*/
/*    }*/
    
/*    .van-specs-grid {*/
/*        margin-bottom: 2rem;*/
/*    }*/
    
/*    .van-specs-grid .spec-item {*/
/*        background: #f8f9fa;*/
/*        border-radius: 12px;*/
/*        padding: 1.2rem;*/
/*        text-align: center;*/
/*        transition: all 0.3s ease;*/
/*        border: 2px solid transparent;*/
/*        height: 100%;*/
/*    }*/
    
/*    .van-specs-grid .spec-item:hover {*/
/*        background: #fff3e6;*/
/*        border-color: #ff8c42;*/
/*        transform: translateY(-3px);*/
/*        box-shadow: 0 6px 20px rgba(255, 140, 66, 0.2);*/
/*    }*/
    
/*    .van-specs-grid .spec-item i {*/
/*        color: #ff8c42;*/
/*        font-size: 1.8rem;*/
/*        margin-bottom: 0.75rem;*/
/*    }*/
    
/*    .van-specs-grid .spec-item .fw-bold {*/
/*        font-size: 1.1rem;*/
/*        color: #2c3e50;*/
/*        margin-bottom: 0.25rem;*/
/*    }*/
    
/*    .booking-form {*/
/*        background: white;*/
/*        border-radius: 15px;*/
/*        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);*/
/*        overflow: hidden;*/
/*    }*/
    
/*    .form-step {*/
/*        display: none;*/
/*        padding: 2.5rem;*/
/*    }*/
    
/*    .form-step.active {*/
/*        display: block;*/
/*    }*/
    
/*    .form-step h4 {*/
/*        color: #2c3e50;*/
/*        font-weight: 700;*/
/*        margin-bottom: 2rem;*/
/*        padding-bottom: 1rem;*/
/*        border-bottom: 2px solid #f8f9fa;*/
/*    }*/
    
/*    .step-indicator {*/
/*        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);*/
/*        padding: 2rem;*/
/*        border-bottom: 1px solid #dee2e6;*/
/*    }*/
    
/*    .step-number {*/
/*        width: 45px;*/
/*        height: 45px;*/
/*        border-radius: 50%;*/
/*        background: #6c757d;*/
/*        color: white;*/
/*        display: flex;*/
/*        align-items: center;*/
/*        justify-content: center;*/
/*        font-weight: 700;*/
/*        margin-right: 1rem;*/
/*        transition: all 0.3s ease;*/
/*        font-size: 1.1rem;*/
/*    }*/
    
/*    .step-number.active {*/
/*        background: #ff8c42;*/
/*        box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);*/
/*        transform: scale(1.1);*/
/*    }*/
    
/*    .step-number.completed {*/
/*        background: #28a745;*/
/*        box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);*/
/*    }*/
    
/*    .step-item {*/
/*        transition: all 0.3s ease;*/
/*    }*/
    
/*    .step-item .fw-bold {*/
/*        color: #2c3e50;*/
/*        margin-bottom: 0.25rem;*/
/*    }*/
    
/*    .form-control,*/
/*    .form-select {*/
/*        border-radius: 10px;*/
/*        border: 2px solid #e9ecef;*/
/*        padding: 0.875rem 1rem;*/
/*        transition: all 0.3s ease;*/
/*        font-size: 1rem;*/
/*    }*/
    
/*    .form-control:focus,*/
/*    .form-select:focus {*/
/*        border-color: #ff8c42;*/
/*        box-shadow: 0 0 0 0.25rem rgba(255, 140, 66, 0.25);*/
/*        outline: none;*/
/*    }*/
    
/*    .form-label {*/
/*        font-weight: 600;*/
/*        color: #495057;*/
/*        margin-bottom: 0.75rem;*/
/*    }*/
    
/*    .btn-modern {*/
/*        border-radius: 10px;*/
/*        padding: 0.875rem 2rem;*/
/*        font-weight: 600;*/
/*        transition: all 0.3s ease;*/
/*        border: none;*/
/*    }*/
    
/*    .btn-modern:hover {*/
/*        transform: translateY(-2px);*/
/*        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);*/
/*    }*/
    
/*    .btn-primary.btn-modern {*/
/*        background: linear-gradient(45deg, #ff8c42, #feab25);*/
/*    }*/
    
/*    .btn-primary.btn-modern:hover {*/
/*        background: linear-gradient(45deg, #ff7a2b, #feab25);*/
/*    }*/
    
/*    .btn-success.btn-modern {*/
/*        background: linear-gradient(45deg, #28a745, #20c997);*/
/*    }*/
    
/*    .btn-outline-light.btn-modern {*/
/*        border: 2px solid rgba(255, 255, 255, 0.8);*/
/*        color: white;*/
/*    }*/
    
/*    .btn-outline-light.btn-modern:hover {*/
/*        background: rgba(255, 255, 255, 0.2);*/
/*        border-color: white;*/
/*    }*/
    
/*    .progress-bar-custom {*/
/*        height: 8px;*/
/*        background: #e9ecef;*/
/*        border-radius: 10px;*/
/*        overflow: hidden;*/
/*        margin-top: 1.5rem;*/
/*    }*/
    
/*    .progress-fill {*/
/*        height: 100%;*/
/*        background: linear-gradient(90deg, #ff8c42, #feab25);*/
/*        border-radius: 10px;*/
/*        transition: width 0.5s ease;*/
/*    }*/
    
/*    .suggestions-list {*/
/*        position: absolute;*/
/*        top: 100%;*/
/*        left: 0;*/
/*        right: 0;*/
/*        background: white;*/
/*        border: 1px solid #ddd;*/
/*        border-top: none;*/
/*        border-radius: 0 0 10px 10px;*/
/*        max-height: 200px;*/
/*        overflow-y: auto;*/
/*        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
/*    }*/
    
/*    .suggestions-list li {*/
/*        padding: 0.75rem 1rem;*/
/*        cursor: pointer;*/
/*        border-bottom: 1px solid #f8f9fa;*/
/*        transition: background-color 0.2s ease;*/
/*    }*/
    
/*    .suggestions-list li:hover {*/
/*        background-color: #fff3e6;*/
/*    }*/
    
/*    .feature-list {*/
/*        list-style: none;*/
/*        padding: 0;*/
/*    }*/
    
/*    .feature-list li {*/
/*        padding: 0.75rem 0;*/
/*        border-bottom: 1px solid #f8f9fa;*/
/*        display: flex;*/
/*        align-items: center;*/
/*    }*/
    
/*    .feature-list li:last-child {*/
/*        border-bottom: none;*/
/*    }*/
    
/*    .feature-list .check {*/
/*        color: #28a745;*/
/*        margin-right: 0.75rem;*/
/*        font-size: 1.1rem;*/
/*    }*/
    
/*    .feature-list .times {*/
/*        color: #dc3545;*/
/*        margin-right: 0.75rem;*/
/*        font-size: 1.1rem;*/
/*    }*/
    
/*    .cost-breakdown {*/
/*        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);*/
/*        border-radius: 12px;*/
/*        padding: 1.5rem;*/
/*        margin-top: 1.5rem;*/
/*        border: 1px solid #dee2e6;*/
/*    }*/
    
/*    .cost-breakdown h6 {*/
/*        color: #2c3e50;*/
/*        font-weight: 700;*/
/*        margin-bottom: 1rem;*/
/*    }*/
    
/*    .cost-breakdown .d-flex {*/
/*        margin-bottom: 0.5rem;*/
/*    }*/
    
/*    .cost-breakdown .fw-bold {*/
/*        font-size: 1.1rem;*/
/*        color: #28a745;*/
/*    }*/
    
/*    .file-upload-area {*/
/*        border: 2px dashed #ddd;*/
/*        border-radius: 12px;*/
/*        padding: 2rem;*/
/*        text-align: center;*/
/*        transition: all 0.3s ease;*/
/*        cursor: pointer;*/
/*        background: #f8f9fa;*/
/*    }*/
    
/*    .file-upload-area:hover {*/
/*        border-color: #ff8c42;*/
/*        background-color: #fff3e6;*/
/*    }*/
    
/*    .file-upload-area.dragover {*/
/*        border-color: #ff8c42;*/
/*        background-color: #fff3e6;*/
/*        transform: scale(1.02);*/
/*    }*/
    
/*    .file-upload-area i {*/
/*        color: #6c757d;*/
/*        margin-bottom: 1rem;*/
/*    }*/
    
/*    .preview-container img {*/
/*        max-width: 100%;*/
/*        max-height: 120px;*/
/*        border-radius: 8px;*/
/*        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);*/
/*    }*/
    
/*    .alert-info {*/
/*        background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);*/
/*        border: none;*/
/*        border-left: 4px solid #2196f3;*/
/*        border-radius: 8px;*/
/*    }*/
    
/*    .alert-warning {*/
/*        background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);*/
/*        border: none;*/
/*        border-left: 4px solid #ff9800;*/
/*        border-radius: 8px;*/
/*    }*/
/*}*/


/* =============================================
   ADMIN VAN MANAGEMENT STYLES
   ============================================= */

/* Van image thumbnail in admin table */
/*.van-image-thumb {*/
/*    width: 60px;*/
/*    height: 40px;*/
/*    object-fit: cover;*/
/*    border-radius: 5px;*/
/*}*/

/* Admin van management cards */
/*.admin-van-card {*/
/*    background: white;*/
/*    border-radius: 10px;*/
/*    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);*/
/*    margin-bottom: 1.5rem;*/
/*    overflow: hidden;*/
/*}*/

/*.admin-van-card .card-header {*/
/*    background: linear-gradient(90deg, #f8f9fa, #e9ecef);*/
/*    border-bottom: 1px solid #dee2e6;*/
/*    padding: 1rem 1.5rem;*/
/*    font-weight: 600;*/
/*}*/

/* Admin stats boxes improvements */
/*.small-box {*/
/*    border-radius: 10px;*/
/*    overflow: hidden;*/
/*    transition: transform 0.3s ease;*/
/*}*/

/*.small-box:hover {*/
/*    transform: translateY(-3px);*/
/*}*/

/*.small-box .inner {*/
/*    padding: 20px;*/
/*}*/

/*.small-box .icon {*/
/*    position: absolute;*/
/*    top: 20px;*/
/*    right: 20px;*/
/*    font-size: 70px;*/
/*    opacity: 0.15;*/
/*}*/

/* Form styling improvements */
/*.admin-form-group {*/
/*    margin-bottom: 1.5rem;*/
/*}*/

/*.admin-form-control {*/
/*    border-radius: 8px;*/
/*    border: 2px solid #e9ecef;*/
/*    padding: 0.75rem 1rem;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.admin-form-control:focus {*/
/*    border-color: #ff8c42;*/
/*    box-shadow: 0 0 0 0.2rem rgba(255, 140, 66, 0.25);*/
/*}*/

/* Custom file input styling */
/*.custom-file-label {*/
/*    border-radius: 8px;*/
/*    border: 2px solid #e9ecef;*/
/*    padding: 0.75rem 1rem;*/
/*}*/

/*.custom-file-input:focus~.custom-file-label {*/
/*    border-color: #ff8c42;*/
/*    box-shadow: 0 0 0 0.2rem rgba(255, 140, 66, 0.25);*/
/*}*/

/* Admin buttons */
/*.admin-btn {*/
/*    border-radius: 8px;*/
/*    padding: 0.5rem 1rem;*/
/*    font-weight: 500;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.admin-btn:hover {*/
/*    transform: translateY(-2px);*/
/*    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);*/
/*}*/

/* Admin table improvements */
/*.admin-table {*/
/*    background: white;*/
/*    border-radius: 10px;*/
/*    overflow: hidden;*/
/*    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);*/
/*}*/

/*.admin-table .table {*/
/*    margin-bottom: 0;*/
/*}*/

/*.admin-table .table th {*/
/*    background-color: #f8f9fa;*/
/*    border-top: none;*/
/*    font-weight: 600;*/
/*    color: #495057;*/
/*    padding: 1rem;*/
/*}*/

/*.admin-table .table td {*/
/*    padding: 1rem;*/
/*    vertical-align: middle;*/
/*}*/

/* Action buttons in admin */
/*.admin-action-buttons .btn {*/
/*    margin: 0 2px;*/
/*    padding: 0.25rem 0.5rem;*/
/*    border-radius: 5px;*/
/*}*/

/* Modal improvements for admin */
/*.admin-modal .modal-content {*/
/*    border-radius: 15px;*/
/*    border: none;*/
/*    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);*/
/*}*/

/*.admin-modal .modal-header {*/
/*    background: linear-gradient(135deg, #ff8c42 0%, #fb993d 100%);*/
/*    color: white;*/
/*    border-radius: 15px 15px 0 0;*/
/*    border-bottom: none;*/
/*}*/

/* Price input styling */
/*.price-input {*/
/*    background: linear-gradient(45deg, #f8f9fa, #e9ecef);*/
/*    font-weight: 600;*/
/*    color: #28a745;*/
/*}*/

/* Status badges */
/*.status-badge {*/
/*    padding: 0.5rem 0.75rem;*/
/*    border-radius: 50px;*/
/*    font-weight: 500;*/
/*    font-size: 0.8rem;*/
/*}*/

/* Featured badge animation */
/*.badge-warning {*/
/*    animation: pulse 2s infinite;*/
/*}*/

/* Current image display in admin */
/*.current-image {*/
/*    text-align: center;*/
/*    padding: 1rem;*/
/*    background: #f8f9fa;*/
/*    border-radius: 8px;*/
/*}*/

/*.current-image img {*/
/*    max-width: 100%;*/
/*    height: auto;*/
/*    border-radius: 8px;*/
/*    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);*/
/*}*/

/* Admin navigation tabs */
/*.nav-tabs .nav-link {*/
/*    border: none;*/
/*    border-radius: 8px 8px 0 0;*/
/*    color: #6c757d;*/
/*    font-weight: 500;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.nav-tabs .nav-link.active {*/
/*    background: linear-gradient(135deg, #ff8c42, #fcca5d);*/
/*    color: white;*/
/*    border: none;*/
/*}*/

/*.nav-tabs .nav-link:hover {*/
/*    background: #f8f9fa;*/
/*    border-color: transparent;*/
/*}*/

/* =============================================
   ANIMATIONS AND UTILITIES
   ============================================= */

/*@keyframes pulse {*/
/*    0% {*/
/*        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7);*/
/*    }*/

/*    70% {*/
/*        box-shadow: 0 0 0 10px rgba(255, 193, 7, 0);*/
/*    }*/

/*    100% {*/
/*        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);*/
/*    }*/
/*}*/

/*@keyframes fadeInUp {*/
/*    from {*/
/*        opacity: 0;*/
/*        transform: translateY(30px);*/
/*    }*/

/*    to {*/
/*        opacity: 1;*/
/*        transform: translateY(0);*/
/*    }*/
/*}*/

/* Loading animation */
/*.loading-spinner {*/
/*    display: inline-block;*/
/*    width: 20px;*/
/*    height: 20px;*/
/*    border: 3px solid rgba(255, 255, 255, .3);*/
/*    border-radius: 50%;*/
/*    border-top-color: white;*/
/*    animation: spin 1s ease-in-out infinite;*/
/*}*/

/*@keyframes spin {*/
/*    to {*/
/*        transform: rotate(360deg);*/
/*    }*/
/*}*/

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */

/*@media (max-width: 1200px) {*/
/*    .van-carousel-container {*/
/*        padding: 0 40px;*/
/*    }*/

/*    .van-card-wrapper {*/
/*        flex: 0 0 320px;*/
/*        max-width: 320px;*/
/*    }*/

/*    .van-showcase {*/
/*        position: static;*/
/*        margin-bottom: 2rem;*/
/*    }*/
/*}*/

/*@media (max-width: 992px) {*/
/*    .booking-header {*/
/*        padding: 1.5rem 0;*/
/*    }*/

/*    .booking-header h1 {*/
/*        font-size: 1.75rem;*/
/*    }*/

/*    .van-details {*/
/*        padding: 1.5rem;*/
/*    }*/

/*    .form-step {*/
/*        padding: 2rem;*/
/*    }*/

/*    .step-indicator {*/
/*        padding: 1.5rem;*/
/*    }*/

/*    .step-number {*/
/*        width: 40px;*/
/*        height: 40px;*/
/*        font-size: 1rem;*/
/*    }*/
/*}*/

/*@media (max-width: 768px) {*/
/*    #van-rentals {*/
/*        padding: 3rem 0;*/
/*    }*/

/*    .van-carousel-container {*/
/*        padding: 0 20px;*/
/*        margin: 1rem 0;*/
/*    }*/

/*    .van-card-wrapper {*/
/*        flex: 0 0 280px;*/
/*        max-width: 280px;*/
/*    }*/

/*    .van-carousel-btn {*/
/*        width: 40px;*/
/*        height: 40px;*/
/*        font-size: 1rem;*/
/*    }*/

/*    .van-carousel-prev {*/
/*        left: -10px;*/
/*    }*/

/*    .van-carousel-next {*/
/*        right: -10px;*/
/*    }*/

/*    .van-card-body {*/
/*        padding: 1rem;*/
/*    }*/

/*    .van-image-container {*/
/*        height: 180px;*/
/*    }*/

/*    .van-title {*/
/*        font-size: 1.1rem;*/
/*    }*/

/*    .price-amount {*/
/*        font-size: 1.1rem;*/
/*    }*/

/*    .spec-item {*/
/*        padding: 0.5rem;*/
/*        min-height: 70px;*/
/*    }*/

/*    .spec-item i {*/
/*        font-size: 1rem;*/
/*    }*/

/*    .booking-header {*/
/*        padding: 1rem 0;*/
/*    }*/

/*    .booking-header h1 {*/
/*        font-size: 1.5rem;*/
/*    }*/

/*    .van-details {*/
/*        padding: 1rem;*/
/*    }*/

/*    .form-step {*/
/*        padding: 1.5rem;*/
/*    }*/

/*    .step-indicator {*/
/*        padding: 1rem;*/
/*    }*/

/*    .step-indicator .d-flex {*/
/*        flex-direction: column;*/
/*        gap: 1rem;*/
/*    }*/

/*    .step-item {*/
/*        text-align: center;*/
/*    }*/

/*    .step-number {*/
/*        margin: 0 auto 0.5rem;*/
/*    }*/

/*    .file-upload-area {*/
/*        padding: 1.5rem;*/
/*    }*/

    /* Admin responsive */
/*    .admin-table {*/
/*        font-size: 0.9rem;*/
/*    }*/

/*    .admin-action-buttons .btn {*/
/*        padding: 0.2rem 0.4rem;*/
/*        font-size: 0.8rem;*/
/*    }*/

/*    .van-image-thumb {*/
/*        width: 50px;*/
/*        height: 30px;*/
/*    }*/
/*}*/

/*@media (max-width: 576px) {*/
/*    .van-carousel-container {*/
/*        padding: 0 10px;*/
/*    }*/

/*    .van-card-wrapper {*/
/*        flex: 0 0 260px;*/
/*        max-width: 260px;*/
/*    }*/

/*    .van-actions {*/
/*        flex-direction: column;*/
/*        gap: 0.5rem;*/
/*    }*/

/*    .van-actions .btn {*/
/*        width: 100%;*/
/*        padding: 0.6rem;*/
/*    }*/

/*    .van-carousel-btn {*/
/*        width: 35px;*/
/*        height: 35px;*/
/*        font-size: 0.9rem;*/
/*    }*/

/*    .no-vans-message {*/
/*        padding: 2rem 1rem;*/
/*        margin: 1rem;*/
/*    }*/

/*    .booking-header h1 {*/
/*        font-size: 1.25rem;*/
/*    }*/

/*    .form-step {*/
/*        padding: 1rem;*/
/*    }*/

/*    .step-indicator {*/
/*        padding: 1rem;*/
/*    }*/

/*    .van-specs-grid .col-4 {*/
/*        margin-bottom: 1rem;*/
/*    }*/

/*    .feature-list {*/
/*        font-size: 0.9rem;*/
/*    }*/

    /* Admin mobile */
/*    .admin-form-control {*/
/*        padding: 0.5rem 0.75rem;*/
/*    }*/

/*    .small-box .inner {*/
/*        padding: 15px;*/
/*    }*/

/*    .small-box .icon {*/
/*        font-size: 50px;*/
/*    }*/
/*}*/

/* =============================================
   UTILITY CLASSES
   ============================================= */

/*.van-loading {*/
/*    opacity: 0.7;*/
/*    pointer-events: none;*/
/*}*/

/*.van-error {*/
/*    border: 2px solid #dc3545 !important;*/
/*}*/

/*.van-success {*/
/*    border: 2px solid #28a745 !important;*/
/*}*/

/*.text-truncate-2 {*/
/*    display: -webkit-box;*/
/*    -webkit-line-clamp: 2;*/
/*    -webkit-box-orient: vertical;*/
/*    overflow: hidden;*/
/*}*/

/*.text-truncate-3 {*/
/*    display: -webkit-box;*/
/*    -webkit-line-clamp: 3;*/
/*    -webkit-box-orient: vertical;*/
/*    overflow: hidden;*/
/*}*/

/* Print styles */
/*@media print {*/

/*    .van-carousel-btn,*/
/*    .van-actions,*/
/*    .admin-action-buttons {*/
/*        display: none !important;*/
/*    }*/

/*    .van-card,*/
/*    .admin-van-card {*/
/*        box-shadow: none;*/
/*        border: 1px solid #ddd;*/
/*        break-inside: avoid;*/
/*    }*/
/*}*/


/* Van Rental Management Styles */

/* Van Management Card Styles */
/*.van-management-card {*/
/*    background: white;*/
/*    border-radius: 10px;*/
/*    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);*/
/*    overflow: hidden;*/
/*}*/

/*.van-management-card .card-header {*/
/*    background: linear-gradient(90deg, #f8f9fa, #e9ecef);*/
/*    border-bottom: 1px solid #dee2e6;*/
/*    padding: 1rem 1.5rem;*/
/*    font-weight: 600;*/
/*}*/

/* Button Styles */
/*.btn-modern {*/
/*    border-radius: 8px;*/
/*    padding: 0.5rem 1rem;*/
/*    font-weight: 500;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.btn-modern:hover {*/
/*    transform: translateY(-2px);*/
/*    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);*/
/*}*/

/* Van Image Thumbnail */
/*.van-image-thumb {*/
/*    width: 60px;*/
/*    height: 40px;*/
/*    object-fit: cover;*/
/*    border-radius: 5px;*/
/*}*/

/* Current Van Image in Edit Modal */
/*.current-van-image {*/
/*    max-width: 200px;*/
/*    height: auto;*/
/*    border-radius: 8px;*/
/*}*/

/* View Van Image */
/*.view-van-image {*/
/*    width: 100%;*/
/*    height: auto;*/
/*    border-radius: 8px;*/
/*}*/

/* Van Specification Box */
/*.van-spec-box {*/
/*    text-align: center;*/
/*    padding: 0.75rem;*/
/*    border: 1px solid #dee2e6;*/
/*    border-radius: 8px;*/
/*    background-color: #f8f9fa;*/
/*}*/

/* Van List Container */
/*.van-list-container {*/
/*    max-height: 200px;*/
/*    overflow-y: auto;*/
/*}*/

/*.van-list-item {*/
/*    padding: 0.25rem 0;*/
/*    border-bottom: 1px solid #f1f1f1;*/
/*}*/

/*.van-list-item:last-child {*/
/*    border-bottom: none;*/
/*}*/

/* Modal Styles */
/*.van-modal {*/
/*    border-radius: 15px;*/
/*    border: none;*/
/*    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);*/
/*}*/

/*.van-modal-header {*/
/*    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
/*    color: white;*/
/*    border-radius: 15px 15px 0 0;*/
/*}*/

/*.van-modal-header .close span {*/
/*    color: white;*/
/*}*/

/* Form Control Styles */
/*.van-form-control {*/
/*    border-radius: 8px;*/
/*    border: 1px solid #ced4da;*/
/*    padding: 0.75rem;*/
/*    transition: border-color 0.3s ease, box-shadow 0.3s ease;*/
/*}*/

/*.van-form-control:focus {*/
/*    border-color: #667eea;*/
/*    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);*/
/*}*/

/* Action Buttons */
/*.action-buttons .btn {*/
/*    margin: 0 2px;*/
/*    padding: 0.25rem 0.5rem;*/
/*}*/

/* Badge Styles */
/*.van-management {*/
/*    .badge {*/
/*        padding: 0.5rem 0.75rem;*/
/*        border-radius: 50px;*/
/*        font-weight: 500;*/
/*    }*/
/*}*/

/* Table Styles */
/*.table th {*/
/*    background-color: #f8f9fa;*/
/*    border-top: none;*/
/*    font-weight: 600;*/
/*    color: #495057;*/
/*}*/

/* Responsive Design */
/*@media (max-width: 768px) {*/
/*    .van-management-card .card-header h3 {*/
/*        font-size: 1.2rem;*/
/*    }*/

/*    .van-spec-box {*/
/*        margin-bottom: 1rem;*/
/*    }*/

/*    .action-buttons .btn {*/
/*        margin: 2px 0;*/
/*        width: 100%;*/
/*    }*/
/*}*/

/* Additional utility classes for spacing */
/*.me-1 {*/
/*    margin-right: 0.25rem;*/
/*}*/

/*.me-2 {*/
/*    margin-right: 0.5rem;*/
/*}*/

/*.me-3 {*/
/*    margin-right: 1rem;*/
/*}*/

/* Loading and Animation States */
/*.van-form-control:disabled {*/
/*    background-color: #f8f9fa;*/
/*    opacity: 0.6;*/
/*}*/

/* Form Group Spacing */
/*.form-group {*/
/*    margin-bottom: 1rem;*/
/*}*/

/* Form Label Styling */
/*.form-label {*/
/*    font-weight: 600;*/
/*    color: #495057;*/
/*    margin-bottom: 0.5rem;*/
/*}*/

/* Small Badge for Sidebar Icons */
/*.small-badge {*/
/*    font-size: 0.6rem;*/
/*    padding: 0.2rem 0.4rem;*/
/*}*/

/* Logo Styles */
/*.logo-circle {*/
/*    width: 60px;*/
/*    height: 60px;*/
/*    border-radius: 50%;*/
/*}*/

/*.logo-responsive {*/
/*    width: 40px;*/
/*    height: 40px;*/
/*    display: none;*/
/*}*/

/*.logo-title {*/
/*    font-size: 1.1rem;*/
/*    font-weight: 600;*/
/*    color: #495057;*/
/*}*/

/* Sidebar Footer Styles */
/*.sidebar .footer {*/
/*    position: absolute;*/
/*    bottom: 0;*/
/*    width: 100%;*/
/*}*/

/*.sidebar-icons a {*/
/*    flex: 1;*/
/*    text-align: center;*/
/*    padding: 0.5rem;*/
/*}*/

/* Content Wrapper Adjustments */
/*.content-wrapper {*/
/*    background-color: #f4f4f4;*/
/*}*/

/* Alert Enhancements */
/*.alert {*/
/*    border-radius: 8px;*/
/*    border: none;*/
/*    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);*/
/*}*/

/* Data Table Enhancements */
/*.table-responsive {*/
/*    border-radius: 8px;*/
/*    overflow: hidden;*/
/*}*/

/*#vanTable {*/
/*    margin-bottom: 0;*/
/*}*/

/* Modal Backdrop */
/*.modal-backdrop {*/
/*    background-color: rgba(0, 0, 0, 0.5);*/
/*}*/

/* Button Group Styling */
/*.btn-group .btn {*/
/*    border-radius: 4px;*/
/*}*/

/*.btn-group .btn:not(:last-child) {*/
/*    margin-right: 2px;*/
/*}*/

/* Form Check Styling */
/*.form-check {*/
/*    padding-left: 1.5rem;*/
/*}*/

/*.form-check-input {*/
/*    margin-left: -1.5rem;*/
/*}*/

/* Text Utilities */
/*.text-success {*/
/*    color: #28a745 !important;*/
/*}*/

/*.text-danger {*/
/*    color: #dc3545 !important;*/
/*}*/

/*.text-primary {*/
/*    color: #007bff !important;*/
/*}*/

/*.text-muted {*/
/*    color: #6c757d !important;*/
/*}*/

/* Box Shadow Utilities */
/*.shadow-sm {*/
/*    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;*/
/*}*/

/* Border Radius Utilities */
/*.rounded {*/
/*    border-radius: 0.375rem !important;*/
/*}*/

/*.rounded-circle {*/
/*    border-radius: 50% !important;*/
/*}*/

/* Display Utilities */
/*.d-block {*/
/*    display: block !important;*/
/*}*/

/*.d-flex {*/
/*    display: flex !important;*/
/*}*/

/* Justify Content Utilities */
/*.justify-content-between {*/
/*    justify-content: space-between !important;*/
/*}*/

/*.justify-content-around {*/
/*    justify-content: space-around !important;*/
/*}*/

/* Align Items Utilities */
/*.align-items-center {*/
/*    align-items: center !important;*/
/*}*/

/*.align-self-center {*/
/*    align-self: center !important;*/
/*}*/

/* Position Utilities */
/*.position-relative {*/
/*    position: relative !important;*/
/*}*/

/*.position-absolute {*/
/*    position: absolute !important;*/
/*}*/

/* Top and Start Utilities */
/*.top-0 {*/
/*    top: 0 !important;*/
/*}*/

/*.start-100 {*/
/*    left: 100% !important;*/
/*}*/

/* Transform Utilities */
/*.translate-middle {*/
/*    transform: translate(-50%, -50%) !important;*/
/*}*/

/* Text Decoration Utilities */
/*.text-decoration-none {*/
/*    text-decoration: none !important;*/
/*}*/

/* Hover Effects */
/*.table-hover tbody tr:hover {*/
/*    background-color: rgba(0, 0, 0, 0.05);*/
/*}*/

/* Form Validation States */
/*.form-control:invalid {*/
/*    border-color: #dc3545;*/
/*}*/

/*.form-control:valid {*/
/*    border-color: #28a745;*/
/*}*/

/* Loading States */
/*.btn:disabled {*/
/*    opacity: 0.65;*/
/*    cursor: not-allowed;*/
/*}*/

/* Animation Classes */
/*.fade {*/
/*    transition: opacity 0.15s linear;*/
/*}*/

/*.fade:not(.show) {*/
/*    opacity: 0;*/
/*}*/

/*.fade.show {*/
/*    opacity: 1;*/
/*}*/

/* Custom Scrollbar for Lists */
/*.van-list-container::-webkit-scrollbar {*/
/*    width: 4px;*/
/*}*/

/*.van-list-container::-webkit-scrollbar-track {*/
/*    background: #f1f1f1;*/
/*    border-radius: 2px;*/
/*}*/

/*.van-list-container::-webkit-scrollbar-thumb {*/
/*    background: #c1c1c1;*/
/*    border-radius: 2px;*/
/*}*/

/*.van-list-container::-webkit-scrollbar-thumb:hover {*/
/*    background: #a1a1a1;*/
/*}*/