body {
    font-family: 'Roboto', sans-serif;

}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px !important;
    }
}

[class*="text-color-hover-"] {
    transition: ease all 300ms;
}

[class*="bg-color-hover-"] {
    transition: ease background 300ms;
}

@media (min-width: 768px) {
    .custom-max-width-1 {
        max-width: 387px;
    }
}

.custom-font-secondary {
    font-family: 'Roboto Slab', serif !important;
}

.custom-font-size-1 {
    font-size: 1.4em !important;
}

.custom-font-size-2 {
    font-size: 1.35em !important;
}

.custom-font-size-3 {
    font-size: 1.15em !important;
}

.custom-font-size-4 {
    font-size: 50% !important;
}

.custom-text-color-1 {
    color: #93bae4 !important;
}

.box-shadow-1 .card-body {
    z-index: 1;
}

.custom-box-shadow-1 {
    box-shadow: 0 0px 90px -55px rgba(0, 0, 0, 0.25) !important;
}

.custom-border-radius-1 {
    border-radius: 0.5rem !important;
}

.custom-line {
    display: inline-block;
    width: 50px;
    border-bottom: 3px solid var(--grey-500);
}

.custom-card-style-1 {
    border: 2px solid transparent;
    transition: ease border 300ms;
}

.custom-card-style-1 .custom-card-style-1-image-wrapper img {
    transform: translate3d(5px, -5px, 0);
    transition: ease transform 300ms;
}

.custom-card-style-1 .custom-card-style-1-title,
.custom-card-style-1 .custom-card-style-1-link {
    transition: ease color 300ms;
}

.custom-card-style-1:hover .custom-card-style-1-image-wrapper img {
    transform: translate3d(0, 0, 0);
}

.owl-carousel {
    display: block;
    opacity: 0;
}

.owl-carousel.owl-loaded {
    opacity: 1;
}

@media (min-width: 1200px) {
    .custom-carousel-box-shadow-1 {
        position: relative;
    }

    .custom-carousel-box-shadow-1:before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 65%;
        height: 0px;
        box-shadow: 0 0 110px 180px rgba(0, 0, 0, 0.07);
        transform: translate3d(-50%, -50%, 0);
        z-index: 0;
    }

    .custom-carousel-box-shadow-2 {
        position: relative;
    }

    .custom-carousel-box-shadow-2:before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 57%;
        height: 0px;
        box-shadow: 0 0 160px 240px rgba(0, 0, 0, 0.07);
        transform: translate3d(-50%, -50%, 0);
        z-index: 0;
    }
}

@media (min-width: 992px) {
    .custom-highlight-1 {
        position: relative;
        z-index: 1;
    }

    .custom-highlight-1:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0%;
        height: 100%;
        background-color: var(--dark);
        z-index: -1;
    }
}

.customHighlightAnim:after {
    animation-name: customHighlightAnim;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

.customHighlightAnimDelay:after {
    animation-delay: 3s;
}

@keyframes customHighlightAnim {
    0% {
        width: 0;
        opacity: 1;
    }

    100% {
        width: 100%;
        opacity: 1;
    }
}

.clean-animation-1 svg g:nth-child(1) {
    animation: cleanAnimation 3s;
    animation-iteration-count: infinite;
}

.clean-animation-1 svg g:nth-child(2) {
    animation: cleanAnimation 3s;
    animation-iteration-count: infinite;
    animation-delay: 400ms;
}

.clean-animation-1 svg g:nth-child(3) {
    animation: cleanAnimation 3s;
    animation-iteration-count: infinite;
    animation-delay: 800ms;
}

@keyframes cleanAnimation {
    0% {
        opacity: 0;
        transform: scale(0.8);
        transform-origin: 50% 50%;
    }

    85% {
        opacity: 1;
        transform: scale(1);
        transform-origin: 50% 50%;
    }

    100% {
        opacity: 0;
        transform: scale(1);
        transform-origin: 50% 50%;
    }
}

.customLineAnimation {
    animation-name: customLineAnimation;
}

@keyframes customLineAnimation {
    0% {
        width: 0px;
        opacity: 1;
    }

    100% {
        width: 50px;
        opacity: 1;
    }
}

@media (min-width: 2000px) {
    .shape-divider svg {
        width: 100%;
    }
}

.custom-col-half-section.col-half-section {
    max-width: 727px;
}

.fluid-col-lg-5 .fluid-col {
    left: 50%;
    width: 100vw;
    transform: translate3d(-50%, 0, 0);
}

@media (min-width: 992px) {
    .fluid-col-lg-5 {
        min-height: 0;
    }

    .fluid-col-lg-5 .fluid-col {
        width: calc(44.2vw - 15px);
        left: 15px;
        transform: none;
    }
}

@media (max-width: 991px) {
    .fluid-col-lg-5 {
        min-height: 400px !important;
    }
}

/*
* Header
*/
.custom-header-top-btn-style-1 {
    position: relative;
}

.custom-header-top-btn-style-1:after {
    content: '';
    position: absolute;
    top: 100%;
    right: 0;
    width: calc(100% + 20px);
    height: 10px;
    z-index: 1;
    background: var(--light);
}

html.sticky-header-active #header .header-top {
    padding: 0 !important;
}

@media (min-width: 992px) {
    #header .header-nav-main nav>ul>li>a {
        font-size: 15px;
        font-weight: 600;
        padding: 0 0.8rem !important;
    }
}

@media (min-width: 1200px) {
    #header .header-nav-main nav>ul>li>a {
        padding: 0 1.3rem !important;
    }
}

/*
* Contact Form
*/
.custom-form-style-1 .form-control {
    height: calc(1.8em + 1.85rem + 2px);
    padding: 15.6px 20px;
    padding: 0.975rem 1.25rem;
    background: var(--grey-100);
    border-color: var(--grey-100);
    line-height: 1.5 !important;
}

.custom-form-style-1 .form-control:focus {
    border-color: var(--grey-500);
}

.custom-form-style-1 .form-control::-webkit-input-placeholder {
    color: #a9a9a9;
}

.custom-form-style-1 .form-control::-moz-placeholder {
    color: #a9a9a9;
}

.custom-form-style-1 .form-control:-ms-input-placeholder {
    color: #a9a9a9;
}

.custom-form-style-1 select {
    color: #495057;
}

.custom-form-style-1 select option {
    color: #a9a9a9;
}

.custom-form-style-1 select option[selected] {
    color: #a9a9a9;
}

.custom-form-style-1 textarea.form-control {
    height: auto;
}

.custom-svg-stars {
    position: absolute;
    top: 0;
    right: 100%;
    width: 300px;
    opacity: 0.1;
    z-index: 0;
}

/*
* Home Why Choose Us Section - Custom Accordion Style
*/
.custom-accordion-style-1>.card {
    border: 1px solid transparent !important;
    transition: ease border-color 300ms;
}

.custom-accordion-style-1>.card .card-header a {
    position: relative;
    padding: 23px 30px;
    background-color: var(--light);
    transition: ease background-color 300ms, ease color 300ms;
}

.custom-accordion-style-1>.card .card-header a:after {
    content: '+';
    position: absolute;
    top: 50%;
    right: 25px;
    font-size: inherit;
    font-weight: inherit;
    transform: translate3d(0, -50%, 0) rotate(45deg);
    transform-origin: 50% 50%;
    transition: ease transform 300ms;
}

.custom-accordion-style-1>.card .card-header a.collapsed:after {
    transform: translate3d(0, -50%, 0) rotate(0deg);
}

.custom-accordion-style-1>.card+.card {
    margin-top: 20px;
}

/*
* Home Section Our Process - Custom Featured Icon
*/
.custom-featured-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 110px;
    border-radius: 100%;
}

.custom-featured-icon-wrapper .icon-featured {
    margin: 0 !important;
}

/*
* Home Section Happy Clients - Custom Testimonial
*/
.testimonial.testimonial-style-3.custom-testimonial-style-1 blockquote {
    background: #FFF !important;
    padding: 45px 40px 35px 40px;
}

.testimonial.testimonial-style-3.custom-testimonial-style-1 blockquote:before {
    content: '\f10d';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 19.2px;
    font-size: 1.2rem;
    top: 15px;
    left: 15px;
}

.testimonial.testimonial-style-3.custom-testimonial-style-1 .testimonial-author {
    margin: 19px 0 0 0;
}

.testimonial.testimonial-style-3.custom-testimonial-style-1 .testimonial-author img {
    max-width: 67px;
}

/*
* Portfolio Detail
*/
.custom-list-icons-icon-size li {
    padding-left: 50px !important;
}

.custom-list-icons-icon-size li>[class*="fa-"]:first-child,
.custom-list-icons-icon-size li>.icons:first-child,
.custom-list-icons-icon-size li a:first-child>[class*="fa-"]:first-child,
.custom-list-icons-icon-size li a:first-child>.icons:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px !important;
    height: 40px !important;
    font-size: 14.4px !important;
    font-size: 0.9rem !important;
    top: 1px !important;
}

/*
* Services Detail
*/
.custom-nav-list-effect-1>li>a {
    position: relative;
    transition: ease padding 300ms, ease color 300ms;
}

.custom-nav-list-effect-1>li>a:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid var(--grey-500);
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0, -50%, 0);
    transition: ease opacity 300ms;
}

.custom-nav-list-effect-1>li.active>a,
.custom-nav-list-effect-1>li.open>a,
.custom-nav-list-effect-1>li:hover>a {
    padding-left: 15px;
}

.custom-nav-list-effect-1>li.active>a:before,
.custom-nav-list-effect-1>li.open>a:before,
.custom-nav-list-effect-1>li:hover>a:before {
    opacity: 1;
    visibility: visible;
}

/*
* Blog
*/
.blog-sidebar .form-control.bg-color-grey {
    background-color: var(--light) !important;
}

/*
* Footer
*/
#footer p,
#footer a:not(.btn),
#footer span,
#footer li,
#footer .footer-copyright p {
    color: #a3b2c7;
}

#footer .social-icons li a {
    color: #a3b2c7 !important;
}

#footer .social-icons li:hover a {
    color: var(--light) !important;
}

#footer a:not(.btn):not(.no-footer-css) {
    color: #a3b2c7;
}

/* Skin */
.custom-svg-fill-color-tertiary {
    fill: var(--tertiary);
}

.custom-svg-fill-color-tertiary-darken {
    fill: var(--tertiary-100);
}

.custom-highlight-1.custom-highlight-1-primary:after {
    background-color: var(--primary);
}

.custom-line {
    border-bottom-color: var(--primary);
}

.owl-carousel.nav-arrows-1 .owl-nav .owl-prev,
.owl-carousel.nav-arrows-1 .owl-nav .owl-next {
    color: var(--secondary);
}

.custom-card-style-1:hover {
    border-color: var(--primary);
}

.custom-card-style-1:hover .custom-card-style-1-title {
    color: var(--primary) !important;
}

.custom-card-style-1:hover .custom-card-style-1-link {
    color: var(--secondary) !important;
}

.custom-accordion-style-1>.card .card-header a {
    background-color: var(--primary);
}

.custom-accordion-style-1>.card .card-header a:not(.collapsed) {
    color: var(--primary-inverse) !important;
}

.custom-accordion-style-1>.card .card-header a.collapsed {
    background-color: var(--primary-inverse);
}

.custom-accordion-style-1>.card:hover {
    border-color: var(--primary) !important;
}

.custom-accordion-style-1>.card:hover .card-header a.collapsed {
    color: var(--primary) !important;
}

.custom-social-icons li a {
    background: var(--secondary);
}

.custom-social-icons li a i {
    color: var(--secondary-inverse);
}

.testimonial.testimonial-style-3.custom-testimonial-style-1 blockquote:before {
    color: var(--tertiary);
}

.custom-nav-list-effect-1>li>a:before {
    border-left-color: var(--primary);
    border-right-color: var(--primary);
}

.custom-nav-list-effect-1>li.active>a,
.custom-nav-list-effect-1>li.open>a,
.custom-nav-list-effect-1>li:hover>a {
    color: var(--primary) !important;
}

.blog-sidebar button.bg-color-grey {
    background-color: var(--primary) !important;
    color: var(--primary-inverse) !important;
}



/* --- Mobile First Approach --- */

/* Default style for mobile, tabs, and small devices */
.container-fluid {
    width: 95% !important;
}

/* Style for desktop screens (e.g., 992px and wider) */
@media (min-width: 992px) {
    .container-fluid {
        width: 80% !important;
    }
}


.main-header {
    background: linear-gradient(135deg, #0281d7 0%, #0f2848 100%);
    color: #ffffff;
    padding: 1.5rem 0;
    margin-bottom: 2rem;
}

/* Imperial/Metric Switch */
.unit-switch {
    position: relative;
    display: inline-block;
    width: 120px;
    height: 32px;
}

.unit-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.switch-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 56px;
    left: 2px;
    bottom: 2px;
    background: #ffffff;
    border-radius: 13px;
    transition: 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.unit-switch input:checked+.switch-slider:before {
    transform: translateX(58px);
}

.switch-labels {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 1;
    pointer-events: none;
}

.selected-info {
    background: #e3f2fd;
    border: 1px solid #0281d7;
    border-radius: 6px;
    padding: 0.7rem 1rem;
    margin-bottom: 1rem;
    color: #0281d7;
    font-size: 0.9rem;
}

.action-controls {
    background: #ffffff;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.btn-primary-custom {
    background: #0281d7;
    border: 1px solid #0281d7;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.btn-primary-custom:hover {
    background: #0f2848;
    border-color: #0f2848;
    color: #fff;
}

/* Blinking effect for bulk action button */
.btn-primary-custom.has-selection {
    animation: blink 1.5s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
        border-color: #0281d7;
        box-shadow: 0 0 5px rgba(2, 129, 215, 0.2);
    }

    50% {
        opacity: 0.8;
        border-color: #0f2848;
        box-shadow: 0 0 15px 5px rgba(2, 129, 215, 0.5);
    }
}

.btn-outline-custom {
    background: transparent;
    border: 1px solid #e9ecef;
    color: #6c757d;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.btn-outline-custom:hover {
    background: #f8f9fa;
    color: #0281d7;
}

.filter-tabs {
    display: inline-flex;
    background: #ffffff;
    border-radius: 8px;
    padding: 0.3rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.filter-tab {
    background: transparent;
    border: none;
    padding: 0.5rem 0.8rem;
    margin: 0 0.1rem;
    border-radius: 6px;
    color: #6c757d;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

.filter-tab.active {
    background: #0281d7;
    color: #ffffff;
}

.filter-tab:hover:not(.active) {
    background: #f8f9fa;
    color: #0281d7;
}

.package-table {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.package-item {
    border-bottom: 1px solid #e9ecef;
    padding: 0.8rem 1rem;
    transition: all 0.2s ease;
    cursor: pointer;
    background: #ffffff;
}

.package-item:last-child {
    border-bottom: none;
}

.package-item:hover {
    background-color: #f8fcff;
}

.package-item.selected {
    background-color: #e3f2fd;
    border-left: 4px solid #0281d7;
}

.package-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #0281d7;
}

.package-image {
    width: 80px;
    height: 73px;
    border-radius: 6px;
    object-fit: cover;
    border: 1px solid #e9ecef;
    cursor: zoom-in;
    /* Change cursor to indicate it's clickable */
}

.package-title {
    font-weight: 600;
    color: #0f2848;
    font-size: 0.95rem;
    text-decoration: none;
}

.package-title:hover {
    color: #0281d7;
    text-decoration: none;
}

.package-meta {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 0.2rem;
}

.package-meta span {
    margin-right: 0.75rem;
}

.package-id {
    color: #0281d7;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.85rem;
}

.package-days {
    font-size: 0.8rem;
    color: #6c757d;
}

.status-badge {
    padding: 0.2rem 0.4rem;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 500;
    display: inline-block;
    margin-right: 0.3rem;
}

.status-arrived {
    background: #d1ecf1;
    color: #0c5460;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-dispatched {
    background: #d4edda;
    color: #155724;
}

.status-na {
    background: #f8d7da;
    color: #721c24;
}

.action-dropdown {
    border: none;
    background: #0281d7;
    color: #ffffff;
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 0.8rem;
    transition: all 0.2s ease;
}

.action-dropdown:hover {
    background: #0f2848;
}

.search-input {
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
}

.search-input:focus {
    outline: none;
    border-color: #0281d7;
    box-shadow: 0 0 0 2px rgba(2, 129, 215, 0.2);
}

/* Modal Backdrops & Modals */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    display: none;
}

.modal-backdrop.show {
    display: block;
}

.status-details,
.image-carousel-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    width: 90%;
    display: none;
}

.status-details {
    z-index: 1050;
    max-width: 500px;
}

.image-carousel-modal {
    z-index: 1060;
    max-width: 650px;
    text-align: center;
}

.status-details.show,
.image-carousel-modal.show {
    display: block;
}

.status-link {
    color: #0281d7;
    cursor: pointer;
    text-decoration: underline;
}

.status-link:hover {
    color: #0f2848;
}

#main-carousel-image {
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 6px;
    margin-bottom: 1rem;
}

#carousel-thumbnails {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.carousel-thumbnail-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid #e9ecef;
    transition: border-color 0.2s ease;
}

.carousel-thumbnail-img:hover,
.carousel-thumbnail-img.active {
    border-color: #0281d7;
}



.package-actions {
    position: relative;
    display: inline-block;
    /* Ensures it only takes up the space it needs */
}

.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    /* Position it right below the button */
    right: 0;
    /* Align to the right edge of the button */
    z-index: 100;
    margin-top: 8px;
    /* A little space between button and menu */

    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

    min-width: 200px;
    padding: 0.5rem 0;

    /* Animation setup: hidden by default */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease-in-out;
}

/* The class to show the menu */
.dropdown-menu-custom.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item-custom {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0.6rem 1rem;

    background: none;
    border: none;

    color: #0f2848;
    font-size: 0.85rem;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.dropdown-item-custom i {
    width: 20px;
    /* Aligns the text nicely */
    color: #6c757d;
}

.dropdown-item-custom:hover {
    background-color: #f8f9fa;
    color: #0281d7;
}

/* ===== Mobile Responsiveness ===== */
@media (max-width: 767.98px) {
    .main-header .row {
        text-align: center;
    }

    .main-header .col-md-6:last-child {
        margin-top: 1rem;
    }

    .main-header .d-flex.justify-content-end {
        justify-content: center !important;
    }

    .action-controls .row>div {
        margin-bottom: 0.75rem;
    }

    .filter-tabs {
        width: 100%;
        display: flex;
    }

    .filter-tab {
        flex-grow: 1;
        text-align: center;
    }

    .action-controls .d-flex.gap-2 {
        justify-content: space-between;
    }

    .action-controls .search-input {
        flex-grow: 1;
    }

    .package-item {
        padding: 1rem;
    }

    .package-item .row {
        align-items: flex-start;
    }

    .package-meta span {
        display: block;
        margin-left: 0;
        margin-top: 5px;
        margin-right: 0;
    }
}

/* ===== Mobile Responsiveness & Layout Changes ===== */
@media (max-width: 767.98px) {
    .main-header .row {
        text-align: center;
    }

    .main-header .col-md-6:last-child {
        margin-top: 1rem;
    }

    .action-controls .row>div {
        margin-bottom: 0.75rem;
    }

    .filter-tabs {
        width: 100%;
        display: flex;
    }

    .filter-tab {
        flex-grow: 1;
        text-align: center;
    }

    .package-image-mobile {
        width: 120px;
        height: 120px;
        border-radius: 8px;
        object-fit: cover;
        border: 1px solid #e9ecef;
        cursor: zoom-in;
    }

    .package-meta span {
        display: block;
        margin-top: 0.25rem;
    }

    .package-item-actions {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #e9ecef;
    }
}

.sidebar {
    width: 100%;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sidebar ul.nav-list li a:before {

    left: 0px;
    display: none;
    ;
}


.sidebar h5 {
    font-weight: 700;
    color: #343a40;
    letter-spacing: 0.5px;
    padding-bottom: 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
}

/* --- General Nav List Styling --- */
.sidebar .nav-list,
.sidebar .nav-list ul {
    list-style: none;
    padding-left: 0;
}

.sidebar .nav-list>li {
    margin-bottom: 5px;
}

.sidebar .nav-link {
    color: #555;
    text-decoration: none;
    display: block;
    padding: 8px 5px 8px 8px;
    /* Added padding for icon */
    font-size: 0.95rem;
    transition: color 0.2s ease-in-out;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    /* Needed for positioning the icon */
    border-radius: 6px;
    /* Rounded corners for active state */

}


.sidebar .nav-link.selected {
    color: #0281d7 !important;
    font-weight: 500;
    /* Medium font weight to make it stand out */
}

/* Optional: You can also style the icon inside the selected link */
.sidebar .nav-link.selected i {
    color: #0281d7 !important;
}



.sidebar li:last-child .nav-link {
    border-bottom: none;
}

.sidebar .nav-link:hover {
    color: #000;
}

/* --- Main Menu Items (Level 1) --- */
.sidebar>.nav-list>.nav-item>.nav-link {
    font-weight: 600;
    color: #333;
    text-transform: Title Case;
    font-size: 15px;
}

/* --- Sub-menu Styling (Level 2) --- */
.sidebar .submenu {
    padding-left: 20px;
    /* Indent sub-items */
}

.sidebar .submenu .nav-link {
    font-weight: normal;
    text-transform: none;
    font-size: 0.9rem;
}

/* --- NEW: Active State Styling --- */
.sidebar .nav-link.active {
    border: 1px solid #8abeff;
    /* Light blue border */
    color: #000;
    font-weight: 500;
}









.action-controls-flex {
    display: flex;
    /* Mobile-first: stack everything vertically */
    flex-direction: column;
    /* Center all items horizontally on mobile */
    align-items: center;
    /* Add vertical space between stacked items on mobile */
    gap: 1.5rem;
}

/* --- Children Sections --- */

/* Style the filter tabs container */
.actions-center .filter-tabs {
    display: flex;
    flex-wrap: wrap; /* Allow buttons to wrap on small screens */
    justify-content: center; /* Center the buttons */
    gap: 0.5rem; /* Space between buttons */
}

/* Style the filter/search container */
.actions-right {
    display: flex;
    align-items: center;
    gap: 0.5rem; /* Space between filter and search */
}


/* --- Desktop Layout (for screens 992px and wider) --- */
@media (min-width: 992px) {
    .action-controls-flex {
        /* On desktop, switch to a horizontal row */
        flex-direction: row;
        /* Distribute space between the items */
        justify-content: space-between;
    }

    /* Make the action button fill its column on mobile for easier tapping */
    .actions-left .btn {
        width: 100%;
    }
    
    /* On desktop, let the action button size itself normally */
    @media (min-width: 992px) {
        .actions-left .btn {
            width: auto;
        }
    }
}


.btn-primary:active:not(.bg-transparent), .btn-primary.active:not(.bg-transparent) {
    background-color:#0281d7!important;
    background-image: none !important;
}

.btn.btn-sm {

    text-decoration: none;
}



.tab-content {
    border-radius: 0 !important;
    box-shadow: none !important;
    background-color:none !important;
    border: 0 !important;
    border-top: 0 !important;
    padding: 0 !important;
}

.package-item .package-actions .action-dropdown,
.package-item .status-link {
    white-space: nowrap; /* Prevent text from wrapping */
    display: inline-flex; /* Use inline-flex for better icon-text alignment */
    align-items: center; /* Vertically align icon and text */
    justify-content: center; /* Horizontally center content if needed */
}

/* You might also want to ensure the parent column has enough room */
/* This targets the column containing the buttons */
.package-item .col-md-auto.d-flex {
    min-width: 180px; /* Adjust this value as needed to accommodate both buttons side-by-side without wrapping */
    /* Or use a more flexible approach with flex-shrink if you want them to take less space but not wrap */
}


#header .header-nav-top .dropdown-menu:before { display: none !important;} 


.header-nav-top .dropdown-menu .dropdown-item:hover,
.header-nav-top .dropdown-menu .dropdown-item.active {
    background-color: #eff5fa !important;
   
}