
.premium-booking-system {


    .premium-tabs-container::-webkit-scrollbar {
        width: 6px;
    }

    .premium-tabs-container::-webkit-scrollbar {
        width: 6px;
    }

    .premium-tabs-container::-webkit-scrollbar-track {
        background: var(--light-gray);
        border-radius: 10px;
    }

    .premium-tabs-container::-webkit-scrollbar-thumb {
        background: var(--medium-gray);
        border-radius: 10px;
    }

    .premium-tabs-container::-webkit-scrollbar-thumb:hover {
        background: var(--primary);
    }

    .premium-tabs-container {
        max-height: 400px;
        overflow-y: auto;
        position: relative;
        /* Ensure it behaves as expected */
    }

    /* Custom Card Styles */
    .premium-card {
        border: none;
        border-radius: 16px !important;
        /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); */
        overflow: hidden;
        margin-bottom: 20px;
    }

    /* Ensure cards have flexible height */
    .premium-tabs-card {
        height: auto;
        /* Remove fixed height */
        max-height: none;
        /* Remove any max height */
        background: white;
        overflow-y: auto;
        /* Enables scrolling if content overflows */
        flex: 1;
        /* Ensure the card can grow and shrink as needed */
    }

    .premium-card-header {
        background-color: white;
        border-bottom: none;
        padding: 20px;
    }

    /* Custom Tab Navigation */
    .premium-tabs {
        padding: 0;
        list-style: none;
    }

    .premium-tab-item {
        margin-bottom: 10px;
    }

    .premium-tab-link {
        color: var(--dark);
        background-color: var(--slight-gray);
        border-radius: 12px;
        padding: 15px 20px;
        transition: all 0.3s ease;
        font-weight: 500;
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
        z-index: 1;
        text-decoration: none;
        border: none;
        width: 100%;
        text-align: left;
        cursor: pointer;
    }

    .premium-tab-link .premium-tab-icon {
        margin-right: 10px;
        font-size: 1.2rem;
        transition: all 0.3s ease;
    }

    .premium-tab-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background-color: var(--primary);
        opacity: 0;
        transition: all 0.3s ease;
    }

    .premium-tab-link.active {
        background-color: rgba(168, 24, 13, 0.05);
        color: var(--primary);
        font-weight: 600;
        box-shadow: 0 4px 10px rgba(168, 24, 13, 0.1);
    }

    .premium-tab-link.active::before {
        opacity: 1;
    }

    .premium-tab-link:hover:not(.active) {
        background-color: var(--light-gray) !important;
        transform: translateX(5px);
    }

    .premium-tab-link::after{
        background-color: var(--primary) !important;
    }

    .premium-tab-badge {
        margin-left: auto;
        background-color: var(--medium-gray);
        color: white;
        font-weight: 500;
        padding: 5px 10px;
        border-radius: 20px;
        font-size: 0.75rem;
    }

    .premium-tab-link.active .premium-tab-badge {
        background-color: var(--primary);
    }

    /* Custom Tab Content */
    .premium-tab-content {
        background-color: white;
        padding: 30px;
        border-radius: 16px;
        min-height: 400px;
    }

    .premium-tab-pane {
        display: none;
    }

    .premium-tab-pane.active {
        display: block;
        animation: fadeIn 0.5s ease;
    }

    /* Custom Heading Styles */
    .premium-title {
        color: var(--primary-dark);
        font-weight: 700;
        margin-bottom: 20px;
        font-size: 1.5rem;
        position: relative;
        padding-bottom: 15px;
    }

    .premium-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background-color: var(--primary);
    }

    .premium-heading {
        color: var(--primary-dark) !important;
        font-weight: 600;
    }

    /* Custom Button */
    .premium-button {
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        color: white;
        border: none;
        border-radius: 8px;
        padding: 12px 24px;
        font-weight: 500;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(168, 24, 13, 0.2);
        cursor: pointer;
    }

    .premium-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(168, 24, 13, 0.25);
        color: white;
    }

    .premium-button-icon {
        margin-right: 8px;
    }

    /* Stats Display */
    .premium-stats {
        display: block;
        text-align: center;
        color: var(--medium-gray);
        font-size: 0.8rem;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid var(--light-gray);
        white-space: nowrap;
        /* Prevents text from wrapping */
        overflow: hidden;
        /* Ensures it doesn’t expand */
    }

    .premium-stats-highlight {
        font-weight: 600;
        color: var(--primary);
    }

    /* Animations */
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Ensure the first card has a flexible height */
    .firstcard {
        position: sticky;
        top: 100px;
        /* Keeps it visible while scrolling */
        align-self: flex-start;

        border-radius: 16px !important;
    }


    .firstcard .premium-card {
        border-top-right-radius: 16px !important;
        border-bottom-right-radius: 16px !important;
    }

    @media (max-width: 767px) {
        /* Convert Vertical Tabs to Horizontal */
        .premium-tabs-container {
            display: flex;
            overflow-x: auto;
            white-space: nowrap;
            position: relative;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: 6px; /* Hide scrollbar for Firefox */
        }
    
        /* Custom Card Styles */
        .premium-card {
            margin-bottom: 20px;
        }
    
        .firstcard {
            position: relative;
            margin-bottom: 70px;
            margin-top: 0;
        }
    
        .premium-tabs {
            display: flex;
            flex-wrap: nowrap;
            gap: 10px;
            padding-bottom: 10px;
        }
    
        .premium-tab-item {
            flex-shrink: 0;
        }
    
        .premium-stats {
            margin-top: 5px;
        }
    
        .premium-tab-link {
            padding: 12px 15px;
            font-size: 14px;
            white-space: nowrap;
            display: inline-block;
        }
    
        /* Hide the Navigation Card Title in Mobile */
        .premium-card-header {
            display: none;
        }
    
        /* Search Bar and Sort Button */
        .premium-tabs-controls {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            width: 100%;
            margin-top: 20px;
        }
    
        .premium-tabs-search {
            flex-grow: 1;
            position: relative;
            margin-left: 15px;
        }
    
        .premium-tabs-search input {
            width: 100%;
            padding-left: 3.5rem;
            font-size: 14px;
        }
    
        .premium-tabs-search #clearSearch {
            display: none;
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            background: transparent;
            border: none;
            color: var(--medium-gray);
            cursor: pointer;
        }
    
        .premium-tabs-search #clearSearch:hover {
            color: var(--primary);
        }
    
        .premium-tabs-sort {
            flex-shrink: 0;
            margin-right: 20px;
        }
    
        .premium-tabs-sort .dropdown-menu {
            min-width: 180px;
        }
    
        /* No Results Message */
        #noResultsMessage {
            text-align: center;
            margin-top: 10px;
            font-size: 14px;
            color: var(--medium-gray);
        }
    }

   /* Enhanced Search Bar */
.premium-tabs-search {
    position: relative;
    flex-grow: 1;
    margin-right: 10px;
}

.premium-tabs-search input {
    padding-left: 2.5rem; /* Space for the search icon */
    background-color: white;
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 14px;
    height: 40px;
}

.premium-tabs-search input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(168, 24, 13, 0.1);
    outline: none;
}

.premium-tabs-search input::placeholder {
    color: var(--medium-gray);
}

.premium-tabs-search i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--medium-gray);
    z-index: 1;
}

/* Clear Button inside Search Bar */
.premium-tabs-search .clear-search {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--medium-gray);
    cursor: pointer;
    display: none; /* Hidden by default */
}

.premium-tabs-search .clear-search:hover {
    color: var(--primary);
}

/* Show clear button when there is input */
.premium-tabs-search input:not(:placeholder-shown) + .clear-search {
    display: block;
}

/* Enhanced Sort Button */
.premium-tabs-sort {
    display: flex;
    align-items: center;
}

.premium-tabs-sort button {
    background-color: white;
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 40px;
    font-size: 14px;
    color: var(--dark);
    cursor: pointer;
}

.premium-tabs-sort button:hover {
    background-color: var(--light-gray);
    border-color: var(--primary);
    color: var(--primary);
}

.premium-tabs-sort button i {
    margin-right: 5px;
    font-size: 1rem;
}

/* Dropdown Menu for Sort Options */
.premium-tabs-sort .dropdown-menu {
    min-width: 150px;
    border-radius: 12px;
    border: 1px solid var(--light-gray);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.premium-tabs-sort .dropdown-item {
    padding: 0.5rem 1rem;
    font-size: 14px;
    
   color: var(--dark);

    transition: all 0.3s ease;
}

.premium-tabs-sort .dropsort:hover {
    background-color: var(--light-gray);
    color: var(--primary);
}

/* Badge for the value */
.badge-value {
    background-color: var(--primary);
    color: var(--secondary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1   rem;
    padding: 0.4rem 1.2rem;
    display: inline-block;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
#bh_booking_id {

    transition: color 0.3s ease;
    color: var(--primary);

}

.bg-custom  {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 1rem 1.5rem !important;
    border-bottom: none  ;
    color: white;
    border-radius: 16px 16px 0 0; /* Rounded corners */
    padding: 1.5rem; /* Increased padding for spacious feel */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
}

.text-customs,
.color-customs{
    color: var(--primary);
}

.badge-customs{
    background:var(--primary);
}

.btn-disabled {
    opacity: 0.7;
    cursor: not-allowed !important;
}


}