
    
:root {
    --primary: #0066ff; /* Bolt-like blue */
    --primary-light: #e6f0ff;
    --text: #333333;
    --light-text: #777777;
    --bg: #ffffff;
    --header-height: 70px;
    --border-radius: 6px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

li{
    text-decoration: none;
    list-style: none;
    
}
a{
    text-decoration: none;
    color: #333333;
}



body {
    color: var(--text);
    overflow-x: hidden;
    padding-top: var(--header-height); /* To prevent content from being hidden under header */
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--bg);

    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    padding: 0 5%;
    z-index: 3;
    transition: all 0.3s ease;
}
.header_container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1184px;
}

.header.scrolled-down {
    transform: translateY(-100%);
}

.header.scrolled-up {
    transform: translateY(0);
}

.header.offcanvas-open {
    /* border-bottom: 1px solid #eee; */
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 30px;
    width: auto;
}

.nav-items {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-link {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s;
    padding: 8px 12px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover {
    color: var(--primary);
    background-color: var(--primary-light);
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: var(--border-radius);
    transition: all 0.3s;
    font-size: 15px;
}

.dropdown-toggle:hover {
    background-color: var(--primary-light);
    color: var(--primary);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--bg);
    min-width: 180px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    padding: 10px 0;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    color: var(--text);
    text-decoration: none;
    transition: all 0.2s;
    font-size: 14px;
}

.dropdown-item:hover {
    background-color: var(--primary-light);
    color: var(--primary);
}

.dropdown-divider {
    height: 1px;
    background-color: #eee;
    margin: 8px 0;
}

.btn {
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-primary {
    background-color: #333333;
    color: white;
}

.btn-primary:hover {
    background-color: #0052cc;
}

.menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    font-size: 22px;
    cursor: pointer;
    color: var(--text);
    border-radius: 50%;
    transition: all 0.3s;
}

.menu-toggle:hover {
    background-color: var(--primary-light);
    color: var(--primary);
}

.menu-toggle.active {
    transform: rotate(90deg);
}

/* Offcanvas Menu */
.offcanvas {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--bg);
    transform: translateY(-150%);
    transition: transform 0.3s ease-in-out;
    z-index: 999;
    padding: 20px 5%;
    overflow-y: auto;
}

.offcanvas.active {
    transform: translateY(0);
}

.offcanvas-links {
    list-style: none;
}

.offcanvas-links li {
    margin-bottom: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    max-width: 100px;
}

.offcanvas-link {
    text-decoration: none;
    color: var(--text);
    font-size: 17px;
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.offcanvas-link:hover {
    color: var(--primary);
}

.offcanvas-dropdown {
    margin-left: 25px;
    margin-top: 8px;
    display: none;
}

.offcanvas-dropdown.active {
    display: block;
}

.offcanvas-dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    color: var(--light-text);
    text-decoration: none;
    font-size: 15px;
}

.offcanvas-dropdown-item:hover {
    color: var(--primary);
}

#offcanvasMenu{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding-bottom: 6rem;
    visibility: visible;
}

.offcanvas-links{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    max-width: 1184px;
}


li>a>svg{
    width: 15px;
    height: auto;
    opacity: 0.7;
}

li>a>svg:hover{
    opacity: 1;
}




.menu-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-content: center;
    gap: 20px;
    max-width: 1184px;
}

.menu_left {
    background-color: #061a370a;
    width: 100%;
    padding: 1rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.menu_right {
    background-color: #061a370a;
    width: 400px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 1rem;
    padding-top: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
    overflow-y: auto;
}
.dropdown-menu{
    background-color: #f5f6f7;
    width: 300px;

    display: flex;
    flex-direction: column;
    gap: 1rem;

    padding-bottom: 1rem;
    padding-top: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
}
.menu-left-desktop{
    height: 100%;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    width: 100%;
    overflow-y: auto;
}

.menu-left-desktop-header{
    padding: 0.5rem 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
}
.menu-left-desktop-content {
    overflow-y: scroll;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3rem;
    justify-content: space-between;
}

.menu-left-desktop-header>li{
    cursor: pointer;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
    width: 100%;
    max-width: fit-content;

    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border-radius: 6px;
}
.header-action-button {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
}
.header-action-button>li {
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}

.menu-left-mobile{
    display: none;
    /* flex-grow: 1; */
    margin-bottom: 1rem;
    overflow-y: auto;
}

.menu-nav-item-active{
    background-color:#ffffff;
}
.menu-nav-item:hover{
    background-color:#ffffff;
}

/* Hide all content sections by default */
.menu-left-desktop-content .home-links {
    display: none;
}

/* Style for active nav item */
.menu-nav-item-active {
    /* Add your active tab styling */
    font-weight: bold;
}

/* Optional: Add hover effects to nav items */
.menu-nav-item {
    transition: all 0.3s ease;
}

.home-links{
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
}

/* Show only the active content */
.menu-left-desktop-content .home-links.active-content {
    display: flex;
}

.home-links.active-content {
    display: flex;
}

.home-links>li{
    width: 100%;
    max-width: 200px;
    border-radius: 6px;
    cursor: pointer;
    
}
.home-links>li:hover{
    background-color: #061a370a;
}
.home-links>li>a{
    background-color: #202020;
    padding: 1rem 0;
    
}
.home-links-nav{
    width: 100%;
    height: 100%;
    padding: 0.5rem 1rem;
}
.home-links-nav a {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    gap: 2rem;
}
.home-links-nav-footerIcon{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.home-links-nav-footerIcon {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.home-links-nav:hover .home-links-nav-footerIcon {
    opacity: 1;
    transform: translateX(0);
}


.home-links-nav a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}



.radius{
    border-radius: 6px;
}


.register-nav-item{
    display: flex;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    
}

.register-nav-item:hover{
    background-color: #061a370a;
}

.register-nav-item a {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    justify-content: space-between;
}

.register-nav-item-headIcon{
    color: #0066ff;
}
.register-nav-item-content{
    margin-left: 0.5rem;
    margin-right: 0.5rem;

}
.register-nav-item-content>div{
    
}
.register-nav-item-footerIcon{

}

.register-nav-item-content-header{
    font-weight: 600;
    font-size: .995rem;
    line-height: 1.25rem ;
}
.register-nav-item-content-content{
    font-size: .75rem;
    line-height: 1.25rem ;
}

/* start button */
.startPrinting {
    padding: 0.5rem 1.5rem;
    background-color: #0066ff;
    border-radius: 6px;
    color: #ffffff;
    width: 100%;
    max-width: 300px;
    height: 50px;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
}



/* Responsive Styles */
@media (max-width: 768px) {
    .nav-link-text, .dropdown-text {
        display: none;
    }
    
    .nav-link, .dropdown-toggle {
        padding: 8px;
    }
    
    .btn {
        padding: 8px 12px;
    }

    .nav-items > :not(.visible) {
        display: none;
    }

    .menu-content {
        flex-direction: column;
    }

    .menu_left{
        height: 100%;
        width: 100%;
    }
    .menu_right{
        display: none;
    }
    .menu-left-desktop{
        display: none;
    }
    .menu-left-mobile{
    display: flex;
}
}

@media (max-width: 576px) {
    .nav-items > :not(.visible){
        display: none;
    }
    
    .logo img {
        
    }
}


 /* Invoice Button Styles */
        .invoice-btn {
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #000000;
            color: white;
            padding: 9px 19px;
            border: 2px solid #000000;
            border-radius: 10px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .invoice-btn:hover {
            background: #333333;
            border-color: #333333;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
            transform: translateY(-2px);
        }
        
        .invoice-btn:active {
            transform: translateY(0);
        }
        
        .notification-dot {
            position: absolute;
            top: -10px;
            right: -10px;
            background: #28a745;
            color: white;
            border-radius: 50%;
            min-width: 24px;
            height: 24px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 12px;
            font-weight: 700;
            border: 2px solid white;
            box-shadow: 0 3px 6px rgba(40, 167, 69, 0.3);
        }