/* Navigation Bar Styles */
.t-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--t-navbar-width);
    height: 100vh;
    background: var(--t-navbar-bg-default);
    z-index: 1000;
    font-family: 'Inter', sans-serif;
    box-shadow: var(--t-navbar-shadow);
    backdrop-filter: blur(20px);
}

.t-nav-container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Logo Section */
.t-nav-logo {
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid 1px solid var(--t-color-surface-00);
    position: relative;
    overflow: hidden;
}

.t-nav-logo-img {
    width: auto;
    height: 15px;
    object-fit: contain;
}

/* Navigation Menu */
.t-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.t-nav-item {
    width: var(--t-navbar-width) !important;
    backdrop-filter: blur(10px);
    margin: 0px;
}

.t-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 74px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}


.t-nav-item:hover {
    background: var(--t-navbar-bg-hover);
    backdrop-filter: blur(10px);
    margin: 0px;
}
.t-nav-link:hover .t-info-12-stronger {
    color: var(--t-navbar-color-hover) !important;
}

.t-nav-item.active {
    background:var(--t-navbar-bg-active); 
/*    box-shadow: inset 0 1px 0 var(--t-color-surface-00),
                0 2px 8px rgba(0, 0, 0, 0.15);*/
}

.t-nav-link.active {
    color: var(--t-navbar-color-active) !important;
}

.t-nav-item.active:hover {
    background: var(--t-navbar-bg-active) !important;
/*    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 3px 10px rgba(0, 0, 0, 0.2);*/
}

.t-nav-link.active:hover {
    color: var(--t-navbar-color-active) !important;
}



.t-nav-link .t-ic {
    margin-bottom: 2px;
    display: block;
    flex-shrink: 0;
    color: var(--t-navbar-color-default) !important;
}


.t-nav-link.active .t-ic {
    background-color: var(--t-navbar-color-active) !important;
    color: var(--t-navbar-color-active) !important;
}

.t-nav-link .t-info-12-stronger {
    text-align: center;
    line-height: 1.2;
    max-width: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    word-wrap: break-word;
    word-break: break-word;
    display: block;
    color: var(--t-navbar-color-default) !important;
    font-size: 12px !important;
    flex-shrink: 0;
}

.t-nav-link.active .t-info-12-stronger {
    color: var(--t-navbar-color-active) !important;
}

.t-nav-bottom-section {
    margin-top: auto;
    padding: 10px 0 0 0;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.t-nav-welcome .t-info-12 {
    text-align: center;
    color: var(--t-navbar-color-default) !important;
}
.logout-btn {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 13px;
    background-color: var(--t-navbar-bg-default) !important;
    color: var(--t-navbar-color-default) !important;
}
    .logout-btn:hover {
        background-color: var(--t-navbar-bg-hover) !important;
    }
/* Navigation Logout Button Override */
.t-nav-bottom-section .t-btn {
    margin-top: 8px;
    width: 100%;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: var(--t-navbar-color-default) !important;
    padding: 8px;
    border-radius: 4px;
    font-size: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.t-nav-bottom-section .t-btn:hover {
/*    background: rgba(255, 255, 255, 0.12);*/
}
