/* Mobile Sidebar Styles */

/* Desktop Defaults */
.mobile-sidebar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: var(--sidebar-bg);
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    display: none;
}

.mobile-only {
    display: none;
}

.header-logo-mobile {
    display: none;
}

.header-logo-mobile img {
    height: 32px;
}

/* Navigation Items */
.mobile-sidebar .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #CDCDCD;
    gap: 4px;
    padding: 10px 0;
    width: 76px;
    height: 76px;
    border-radius: 16px;
    transition: all 0.2s;
}

.mobile-sidebar .nav-item img {
    width: 24px;
    height: 24px;
    transition: filter 0.2s;
}

.mobile-sidebar .nav-item span {
    font-size: 16px;
}

/* Navigation States */
.mobile-sidebar .nav-item:hover {
    background-color: #344762;
    color: white;
}

.mobile-sidebar .nav-item.active {
    background-color: #091931;
    color: white;
}

/* Guest Links */
.mobile-sidebar .nav-item.guest-link {
    width: auto;
    padding: 10px 14px;
    font-size: 16px;
    text-align: center;
    height: 76px;
    white-space: nowrap;
}

.mobile-sidebar .nav-item.guest-link span {
    font-size: 16px;
    line-height: 1.2;
    white-space: normal;
    text-align: center;
    max-width: 80px;
}

/* Mobile (max-width: 850px) */
@media(max-width: 850px) {
    /* Visibility */
    .mobile-sidebar {
        display: flex;
    }

    .header-logo-mobile {
        display: block;
    }

    .header-icons .help-icon {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    /* Dropdown */
    .profile-dropdown {
        background-color: #2A3647;
        box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
        border-radius: 20px 0px 20px 20px;
        padding: 10px 0;
        min-width: 150px;
    }

    .profile-dropdown a {
        color: #CDCDCD;
        font-size: 16px;
        padding: 10px 24px;
        display: block;
    }

    .profile-dropdown a:hover {
        background-color: #344762;
        color: white;
    }
}
