/* Extracted from resources/views/includes/navbar2.blade.php */
/* Hide the top green bar */
.top-bar-utility {
    display: none !important;
}

/* Adjust main header vertical alignment and styles */
.header.header-light {
    border-bottom: 1px solid #f1f5f9 !important;
    background: #ffffff !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02) !important;
}

/* Active link underline indicator */
.header.header-light .nav-menu > li.active > a {
    color: #0b8260 !important;
    font-weight: 600 !important;
}
@media (min-width: 992px) {
    #navigation.navigation-landscape {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 76px;
    }

    #navigation .nav-header {
        display: flex;
        align-items: center;
        flex: 0 0 auto;
        width: auto;
        min-height: 76px;
        margin-right: 0.75rem;
    }

    #navigation .nav-brand {
        display: inline-flex;
        align-items: center;
        margin: 0;
        padding: 0;
    }

    #navigation .nav-brand img.logo {
        display: block;
        max-width: 190px;
        width: auto;
        height: auto;
    }

    #navigation .nav-toggle,
    #navigation .mobile_nav {
        display: none !important;
    }

    #navigation .nav-menus-wrapper {
        flex: 1 1 auto;
        width: auto;
        margin-left: 0;
    }

    #navigation .nav-menu {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.1rem;
        margin: 0 auto;
    }

    #navigation .nav-menu > li > a {
        padding: 1.1rem 0.78rem !important;
        font-size: 0.95rem !important;
        line-height: 1.1;
        letter-spacing: -0.01em;
    }

    .header.header-light .nav-menu > li {
        position: relative;
    }
    .header.header-light .nav-menu > li.active > a::after {
        content: "";
        position: absolute;
        bottom: 0px;
        left: 50%;
        transform: translateX(-50%);
        width: 24px;
        height: 3px;
        background-color: #0b8260;
        border-radius: 99px;
    }
}

/* Selector dropdown styling inside navbar */
.navbar2-nav-dropdown {
    position: relative;
    list-style: none;
}
.navbar2-nav-dropdown .nav-selector-link {
    color: #475569 !important; /* Slate color for text */
    font-weight: 600 !important;
    font-size: 0.8rem !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center;
    gap: 4px;
    padding: 4px 8px !important;
    border-radius: 7px;
    transition: all 0.2s ease;
    line-height: 1;
    letter-spacing: -0.01em;
}
.navbar2-nav-dropdown .nav-selector-link:hover {
    background-color: #f1f5f9 !important;
    color: #0b8260 !important;
}
.navbar2-nav-dropdown .nav-selector-link i {
    font-size: 0.9rem;
    color: #64748b;
}

/* Vertical divider styling */
.nav-divider-li {
    list-style: none;
    display: flex;
    align-items: center;
    padding: 0 1px;
}
.nav-vertical-divider {
    display: inline-block;
    width: 1px;
    height: 14px;
    background-color: #cbd5e1; /* slate-300 */
}

/* Sign In & Register Buttons Styling */
.nav-btn-signin {
    border: 1.5px solid #e2e8f0 !important;
    background-color: #ffffff !important;
    color: #1e293b !important;
    font-weight: 600 !important;
    font-size: 0.92rem !important;
    padding: 9px 18px !important;
    border-radius: 10px !important;
    transition: all 0.2s ease-in-out !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02) !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}
.nav-btn-signin:hover {
    border-color: #cbd5e1 !important;
    background-color: #f8fafc !important;
    color: #0b8260 !important;
    transform: translateY(-1px);
}

.nav-btn-register {
    background-color: #0b8260 !important; /* Brand green */
    border: 1.5px solid #0b8260 !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 0.92rem !important;
    padding: 9px 18px !important;
    border-radius: 10px !important;
    transition: all 0.2s ease-in-out !important;
    box-shadow: 0 4px 12px rgba(11, 130, 96, 0.18) !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}
.nav-btn-register:hover {
    background-color: #096b4f !important;
    border-color: #096b4f !important;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(11, 130, 96, 0.25) !important;
}

/* Guest Actions Container Alignment */
.navbar2-guest-actions {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem;
    margin-left: auto;
    flex-wrap: nowrap;
}
.navbar2-guest-actions > li {
    float: none !important;
    margin: 0 !important;
    display: flex;
    align-items: center;
}
.navbar2-guest-actions > li.list-buttons {
    margin-left: 0.42rem !important;
}

.company-account-name {
    display: inline-block;
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Mobile responsive compatibility adjustments */
@media (max-width: 991.98px) {
    .navbar2-guest-actions {
        flex-direction: column !important;
        align-items: stretch !important;
        width: 100%;
        gap: 0.5rem;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #edf2f7;
    }
    .navbar2-guest-actions > li {
        width: 100%;
    }
    .navbar2-guest-actions > li > a {
        width: 100% !important;
        justify-content: flex-start !important;
    }
    .nav-divider-li {
        display: none !important;
    }
}

/* Extracted from resources/views/includes/navbar2.blade.php */
.site-header-fixed-wrap {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: #ffffff;
    box-shadow: 0 1px 0 rgba(24, 25, 28, 0.08);
    overflow: visible;
}

.site-header-fixed-wrap .header.header-light {
    background: #ffffff;
    overflow: visible;
}

.circle {
    border-radius: 50%;
    object-fit: cover;
}

.navbar2-guest-actions .parent-parent-menu-item {
    position: relative;
    display: flex;
    align-items: center;
}

.navbar2-guest-actions .parent-parent-menu-item > a {
    min-height: 34px;
    padding: 0.2rem 0.45rem !important;
    border-radius: 999px;
    color: #111827 !important;
    font-size: 0.84rem;
    font-weight: 600;
    line-height: 1.2;
    transition: background-color 0.18s ease, color 0.18s ease,
        box-shadow 0.18s ease;
}

.navbar2-guest-actions .parent-parent-menu-item:hover > a,
.navbar2-guest-actions .parent-parent-menu-item > a.active {
    color: #0b8260 !important;
    background: rgba(11, 130, 96, 0.08);
    box-shadow: 0 1px 0 rgba(11, 130, 96, 0.08);
}

.navbar2-guest-actions .parent-parent-menu-item > a img {
    width: 22px;
    height: 22px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
}

.company-account-logo-wrap {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid #d9e2ec;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
}

.company-account-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
    display: block;
}

.navbar2-guest-actions .parent-parent-menu-item > a .submenu-indicator {
    margin-left: 0.2rem;
}

.navbar2-guest-actions .parent-parent-menu-item .nav-dropdown.nav-submenu {
    right: 0 !important;
    left: auto !important;
    top: calc(100% + 2px) !important;
    min-width: 205px;
    padding: 0.55rem !important;
    border: 1px solid #edf2f7 !important;
    border-radius: 10px !important;
    background: #ffffff !important;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.14) !important;
    overflow: visible;
}

.navbar2-guest-actions .parent-parent-menu-item {
    position: relative;
}

.navbar2-guest-actions .parent-parent-menu-item::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 14px;
}

.navbar2-guest-actions
    .parent-parent-menu-item
    .nav-dropdown.nav-submenu::before {
    content: "";
    position: absolute;
    top: -6px;
    right: 22px;
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-left: 1px solid #edf2f7;
    border-top: 1px solid #edf2f7;
    transform: rotate(45deg);
}

.navbar2-guest-actions .parent-parent-menu-item .nav-dropdown.nav-submenu li {
    margin: 0;
    padding: 0;
}

.navbar2-guest-actions
    .parent-parent-menu-item
    .nav-dropdown.nav-submenu
    li
    + li {
    margin-top: 0.25rem;
    padding-top: 0.25rem;
    border-top: 1px solid #edf2f7;
}

.navbar2-guest-actions .parent-parent-menu-item .sub-menu-item {
    display: flex !important;
    align-items: center;
    gap: 0.55rem;
    min-height: 40px;
    padding: 0.62rem 0.72rem !important;
    border-radius: 8px;
    color: #374151 !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.16s ease, color 0.16s ease,
        transform 0.16s ease;
}

.navbar2-guest-actions .parent-parent-menu-item .sub-menu-item i {
    width: 18px;
    margin: 0 !important;
    color: #64748b;
    text-align: center;
    transition: color 0.16s ease;
}

.navbar2-guest-actions .parent-parent-menu-item .sub-menu-item:hover,
.navbar2-guest-actions .parent-parent-menu-item .sub-menu-item.active {
    color: #0b8260 !important;
    background: rgba(11, 130, 96, 0.08);
    transform: translateX(2px);
}

.navbar2-guest-actions .parent-parent-menu-item .sub-menu-item:hover i,
.navbar2-guest-actions .parent-parent-menu-item .sub-menu-item.active i {
    color: #0b8260;
}

.navbar2-guest-actions .parent-parent-menu-item:hover .nav-dropdown.nav-submenu,
.navbar2-guest-actions
    .parent-parent-menu-item:focus-within
    .nav-dropdown.nav-submenu {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

/* Notification dropdown compatibility for navbar2 */
.notification-icon {
    position: relative;
    cursor: pointer;
    color: #18191c !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 0;
    border-radius: 50%;
    transition: background-color 0.2s ease, color 0.2s ease,
        box-shadow 0.2s ease;
}

.notification-icon:hover,
.notification-icon.notification-visiable {
    color: #0b8260 !important;
    background: rgba(11, 130, 96, 0.08);
}

.notification-icon > svg {
    width: 22px;
    height: 22px;
    min-width: 22px;
    min-height: 22px;
}

.notification-icon > .circle {
    position: absolute;
    top: 6px;
    right: 8px;
    width: 11px;
    height: 11px;
}

.notification-icon > .notification-bar {
    width: 390px;
    max-width: calc(100vw - 24px);
    right: 0;
    top: calc(100% + 12px);
    opacity: 0;
    visibility: hidden;
    position: absolute;
    z-index: 1035;
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 14px;
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.16);
    overflow: visible;
    transform: translateY(8px) scale(0.98);
    transform-origin: top right;
    transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}

.notification-icon > .notification-bar::before {
    content: "";
    position: absolute;
    top: -7px;
    right: 18px;
    width: 14px;
    height: 14px;
    background: #fff;
    border-left: 1px solid #edf2f7;
    border-top: 1px solid #edf2f7;
    transform: rotate(45deg);
}

.notification-visiable > .notification-bar {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.notification-bar .notification-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 18px 14px;
    color: #111827 !important;
    text-decoration: none;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 14px 14px 0 0;
}

.notification-bar .notification-header h2 {
    margin: 0 !important;
    color: #111827 !important;
    font-size: 1.08rem !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
}

.notification-bar .notification-header p {
    margin: 1px 0 0 !important;
    padding: 0.35rem 0.62rem;
    border: 1px solid rgba(11, 130, 96, 0.16);
    border-radius: 999px;
    color: #0b8260 !important;
    background: rgba(11, 130, 96, 0.08);
    font-size: 0.78rem !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    white-space: nowrap;
}

.notification-bar .devider {
    height: 1px;
    background: #edf2f7;
    margin: 0;
}

.notification-bar .notification-list {
    max-height: 340px;
    overflow-y: auto;
    padding: 8px;
    background: #fff;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 transparent;
    border-radius: 0 0 14px 14px;
}

.notification-bar .notification-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.notification-bar .notification-list li {
    padding: 0;
}

.notification-bar .notification-list li a {
    display: flex !important;
    align-items: center !important;
    gap: 11px !important;
    padding: 11px 10px !important;
    border-radius: 10px;
    white-space: normal !important;
    line-height: 1.35 !important;
    text-align: left !important;
    color: #18191c !important;
    text-decoration: none;
    transition: background-color 0.16s ease, transform 0.16s ease;
}

.notification-bar .notification-list li a:hover {
    background: #f8fafc;
    transform: translateX(2px);
}

.notification-bar .notification-list li a .notification-thumb {
    width: 38px;
    height: 38px;
    margin: 0 !important;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #0b8260;
    background: rgba(11, 130, 96, 0.1);
}

.notification-bar .notification-list li a .notification-thumb svg {
    width: 20px !important;
    height: 20px !important;
}

.notification-bar .notification-list li a .notification-thumb svg * {
    stroke: currentColor !important;
    fill: none !important;
}

.notification-bar .notification-list li a h4 {
    margin: 0 0 4px 0 !important;
    color: #111827 !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    line-height: 1.32 !important;
    white-space: normal !important;
    text-align: left !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.notification-bar .notification-list li a p {
    margin: 0 !important;
    font-size: 0.78rem !important;
    line-height: 1.3 !important;
    color: #64748b !important;
    text-align: left !important;
    font-weight: 500 !important;
}

.notification-bar .notification-list .text-center {
    padding: 28px 16px;
    color: #64748b !important;
    font-size: 0.9rem;
}

.notification-bar > .text-center.bg-gray-50 {
    padding: 10px 14px !important;
    border-top: 1px solid #edf2f7;
    background: #f8fafc !important;
    border-radius: 0 0 14px 14px;
}

.notification-bar > .text-center.bg-gray-50 a {
    color: #0b8260 !important;
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 800;
}

.notification-bar > .text-center.bg-gray-50 .underCs {
    margin: 0 !important;
}

@media (max-width: 575.98px) {
    .notification-icon > .notification-bar {
        position: fixed;
        top: 70px;
        right: 12px;
        left: 12px;
        width: auto;
        max-width: none;
        transform-origin: top center;
    }

    .notification-icon > .notification-bar::before {
        display: none;
    }

    .notification-bar .notification-header {
        padding: 16px 14px 12px;
    }

    .notification-bar .notification-header h2 {
        font-size: 1rem !important;
    }

    .notification-bar .notification-list {
        max-height: min(62vh, 340px);
        padding: 6px;
    }
}

.nav-wallet-btn,
.navbar2-guest-actions > li > a.nav-wallet-btn {
    background: rgba(var(--main-color-rgb), 0.1) !important;
    color: var(--main-color) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(var(--main-color-rgb), 0.2) !important;
    font-size: 14px;
}

.nav-wallet-btn:hover,
.navbar2-guest-actions > li > a.nav-wallet-btn:hover {
    background: var(--main-color) !important;
    color: #fff !important;
    transform: translateY(-1px);
}

@media (min-width: 992px) {
    .nav-menus-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.7rem;
        width: 100%;
    }

    .nav-menus-wrapper > .nav-menu {
        flex: 1 1 auto;
        min-width: 0;
        justify-content: center;
    }

    .nav-menus-wrapper > .navbar2-guest-actions {
        flex: 0 0 auto;
        min-width: max-content;
    }

    .nav-menus-wrapper.navbar2-auth-company .navbar2-guest-actions {
        flex-wrap: wrap;
        justify-content: flex-end;
        row-gap: 0.5rem;
        column-gap: 0.45rem;
        max-width: 620px;
    }

    .nav-menus-wrapper.navbar2-auth-company .company-secondary-row-item {
        order: 20;
    }

    .nav-menus-wrapper.navbar2-auth-company .company-country-item {
        margin-left: auto !important;
    }

    .nav-menus-wrapper.navbar2-auth-company .nav-menu > li > a {
        padding-left: 0.7rem !important;
        padding-right: 0.7rem !important;
        font-size: 0.92rem !important;
    }

    .nav-menus-wrapper.navbar2-auth-company
        .navbar2-nav-dropdown
        .nav-selector-link {
        padding: 6px 8px !important;
        font-size: 0.82rem !important;
    }

    .nav-menus-wrapper.navbar2-auth-company .nav-divider-li {
        padding: 0 2px;
    }

    .nav-menus-wrapper.navbar2-auth-company .nav-wallet-btn,
    .nav-menus-wrapper.navbar2-auth-company
        .navbar2-guest-actions
        > li
        > a.nav-wallet-btn {
        padding: 0.45rem 0.9rem !important;
        font-size: 0.92rem !important;
    }

    .nav-menus-wrapper.navbar2-auth-company
        .navbar2-guest-actions
        .parent-parent-menu-item
        > a {
        padding: 0.35rem 0.45rem !important;
        gap: 0.2rem;
    }
}

@media (max-width: 767.98px) {
    .site-header-fixed-wrap {
        box-shadow: 0 1px 0 rgba(24, 25, 28, 0.06);
    }

    .site-header-fixed-wrap .header > .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .header.header-light {
        min-height: 64px;
    }

    .nav-header {
        min-height: 64px;
        gap: 8px;
        padding: 0;
    }

    .nav-brand {
        flex: 1 1 auto;
        min-width: 0;
        margin-right: 0;
        padding-right: 8px;
    }

    .nav-brand img.logo {
        max-width: 132px;
        width: auto;
        height: auto;
    }

    .nav-toggle {
        margin-left: 0;
        flex-shrink: 0;
    }

    .mobile_nav {
        flex-shrink: 0;
    }

    .mobile_nav > ul {
        display: flex;
        align-items: center;
        gap: 6px;
        margin: 0;
        padding: 0;
        list-style: none;
        flex-wrap: nowrap;
    }

    .mobile_nav > ul > li {
        margin: 0;
        display: flex;
        align-items: center;
        flex-shrink: 0;
    }

    .mobile_nav .list-buttons a {
        width: 36px;
        height: 36px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

    .mobile_nav .list-buttons a img {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: block;
    }

    .nav-menus-wrapper {
        width: min(320px, 84vw) !important;
        max-width: 84vw !important;
        padding: 1rem 0.85rem 1.25rem !important;
        overflow-x: hidden !important;
    }

    .nav-menu,
    .nav-menu > li,
    .nav-menus-wrapper .nav-menu > li > a {
        max-width: 100%;
    }

    .nav-menus-wrapper .nav-menu > li > a {
        white-space: normal;
        word-break: break-word;
        line-height: 1.35;
        padding: 0.8rem 0 !important;
    }

    .nav-menus-wrapper .navbar2-guest-actions {
        margin-top: 0.75rem;
        padding-top: 0.75rem;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        width: 100%;
        gap: 0.35rem;
    }

    .nav-menus-wrapper .navbar2-guest-actions > li {
        width: 100%;
    }

    .nav-menus-wrapper .navbar2-guest-actions > li > a,
    .nav-menus-wrapper .navbar2-guest-actions .parent-parent-menu-item > a {
        width: 100%;
        min-height: 46px;
        justify-content: flex-start;
        padding: 0.75rem 0.35rem !important;
        color: #f8fafc !important;
        background: transparent !important;
        box-shadow: none !important;
        border-radius: 10px;
    }

    .nav-menus-wrapper .navbar2-guest-actions > li > a i,
    .nav-menus-wrapper .navbar2-guest-actions .parent-parent-menu-item > a i,
    .nav-menus-wrapper
        .navbar2-guest-actions
        .parent-parent-menu-item
        > a
        .submenu-indicator {
        color: #f8fafc !important;
    }

    .nav-menus-wrapper .navbar2-guest-actions > li > a:hover,
    .nav-menus-wrapper .navbar2-guest-actions > li > a:focus,
    .nav-menus-wrapper
        .navbar2-guest-actions
        .parent-parent-menu-item
        > a:hover,
    .nav-menus-wrapper
        .navbar2-guest-actions
        .parent-parent-menu-item
        > a.active {
        color: #ffffff !important;
        background: rgba(255, 255, 255, 0.08) !important;
    }

    .nav-menus-wrapper .navbar2-guest-actions .parent-parent-menu-item {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-menus-wrapper .navbar2-guest-actions .parent-parent-menu-item::after,
    .nav-menus-wrapper
        .navbar2-guest-actions
        .parent-parent-menu-item
        .nav-dropdown.nav-submenu::before {
        display: none;
    }

    .nav-menus-wrapper
        .navbar2-guest-actions
        .parent-parent-menu-item
        .nav-dropdown.nav-submenu {
        position: static !important;
        display: block !important;
        min-width: 100%;
        margin-top: 0.35rem;
        padding: 0.35rem !important;
        border-radius: 10px !important;
        background: rgba(255, 255, 255, 0.04) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        box-shadow: none !important;
    }

    .nav-menus-wrapper
        .navbar2-guest-actions
        .parent-parent-menu-item
        .sub-menu-item {
        color: #f8fafc !important;
        white-space: normal;
        background: transparent !important;
        transform: none !important;
    }

    .nav-menus-wrapper
        .navbar2-guest-actions
        .parent-parent-menu-item
        .sub-menu-item
        i {
        color: #cbd5e1 !important;
    }

    .nav-menus-wrapper
        .navbar2-guest-actions
        .parent-parent-menu-item
        .sub-menu-item:hover,
    .nav-menus-wrapper
        .navbar2-guest-actions
        .parent-parent-menu-item
        .sub-menu-item.active {
        color: #ffffff !important;
        background: rgba(255, 255, 255, 0.08) !important;
    }

    .nav-menus-wrapper
        .navbar2-guest-actions
        .parent-parent-menu-item
        .sub-menu-item:hover
        i,
    .nav-menus-wrapper
        .navbar2-guest-actions
        .parent-parent-menu-item
        .sub-menu-item.active
        i {
        color: #ffffff !important;
    }

    .notification-icon {
        width: 36px;
        height: 36px;
    }

    .notification-icon > svg {
        width: 20px;
        height: 20px;
        min-width: 20px;
        min-height: 20px;
    }
}

/* Extracted from resources/views/includes/navbar2.blade.php */
.mobile-utility-trigger,
.mobile-utility-panel-header button {
    border: 0;
    background: transparent;
}
.mobile-utility-trigger {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0b8260;
    font-size: 1.1rem;
}
.mobile-utility-panel,
.mobile-utility-backdrop {
    display: none;
}
@media (max-width: 991.98px) {
    .mobile-utility-backdrop.is-open {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 1098;
        background: rgba(15, 23, 42, 0.48);
    }
    .mobile-utility-panel {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 1099;
        width: min(88vw, 360px);
        padding: 1rem;
        overflow-y: auto;
        background: #fff;
        transform: translateX(105%);
        transition: transform 0.2s ease;
        box-shadow: -12px 0 35px rgba(15, 23, 42, 0.18);
    }
    .mobile-utility-panel.is-open {
        transform: translateX(0);
    }
    .mobile-utility-panel-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 0.8rem;
        border-bottom: 1px solid #e5e7eb;
    }
    .mobile-utility-panel-header button {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }
    .mobile-utility-section {
        padding: 0.8rem 0;
        border-bottom: 1px solid #e5e7eb;
    }
    .mobile-utility-section summary {
        cursor: pointer;
        color: #111827;
        font-weight: 700;
    }
    .mobile-utility-section summary i {
        width: 24px;
        color: #0b8260;
    }
    .mobile-utility-options {
        max-height: 260px;
        margin-top: 0.65rem;
        overflow-y: auto;
    }
    .mobile-utility-options a {
        display: flex;
        align-items: center;
        gap: 0.55rem;
        padding: 0.65rem 0.75rem;
        border-radius: 7px;
        color: #334155;
        text-decoration: none;
    }
    .mobile-utility-options a:hover {
        color: #0b8260;
        background: #f0fdf8;
    }
}

/* Extracted from resources/views/includes/footer2.blade.php */
@media (max-width: 767.98px) {
    .footer.skin-light-footer {
        overflow: visible;
        padding-bottom: calc(18px + env(safe-area-inset-bottom, 0px));
    }
    .footer-top .container,
    .footer-bottom .container,
    .footer.skin-light-footer > div > .container {
        padding-left: 14px;
        padding-right: 14px;
    }
    .footer-top .row {
        row-gap: 1rem;
    }
    .call-action-form .newsltr-form {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .call-action-form .newsltr-form .form-control,
    .call-action-form .newsltr-form .btn-subscribe {
        width: 100%;
    }
    .job-info-count-group {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }
    .footer .app-wrap > div {
        align-items: center !important;
        padding: 0.85rem !important;
        gap: 0.85rem !important;
    }
    .footer .app-wrap .social-caption h5 {
        font-size: 1rem;
    }
    .footer .app-wrap .social-caption p {
        font-size: 0.8rem;
    }
    .footer .app-wrap .social-icon svg {
        width: 40px;
        height: 40px;
    }
    .footer .footer-widget {
        margin-bottom: 1.5rem;
    }
    .footer .app-wrap {
        overflow: visible;
        padding-bottom: 0.35rem;
    }
    .footer-bottom {
        padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    }
}
@media (max-width: 575.98px) {
    .job-info-count-group {
        grid-template-columns: 1fr;
    }
    .footer .app-wrap .social-caption p,
    .footer .app-wrap .social-caption h5 {
        word-break: break-word;
    }
}
.footer .app-wrap > div {
    min-width: 0;
}
.footer .app-wrap {
    overflow: visible;
}
.footer .app-wrap .social-icon {
    flex: 0 0 auto;
    line-height: 0;
}
.footer .app-wrap .social-icon svg {
    display: block;
    width: 48px;
    height: 48px;
}
.footer .app-wrap .social-caption {
    min-width: 0;
}
.footer .app-wrap .social-caption h5 {
    line-height: 1.25;
}
