.header-nexus-auth {
    display: flex;
    align-items: center;
}

.user-menu-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.admin-dropdown-btn {
    background-color: #232c85;
    color: white;
    padding: 8px 16px;
    font-size: 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background-color 0.3s;
}

.admin-dropdown-btn:hover {
    background-color: #1a2163;
}

.admin-dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1000;
    border-radius: 4px;
    overflow: hidden;
}

.admin-dropdown-content a {
    color: #232c85;
    padding: 12px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s;
}

.admin-dropdown-content a:hover {
    background-color: #e9f0ff;
}

.admin-dropdown:hover .admin-dropdown-content {
    display: block;
}

.header-nexus-login, .header-nexus-register {
    color: #232c85;
    text-decoration: none;
    padding: 8px 16px;
    margin-left: 10px;
    border-radius: 4px;
    transition: background-color 0.3s;
    font-weight: 500;
}

.header-nexus-login:hover, .header-nexus-register:hover {
    background-color: rgba(35, 44, 133, 0.1);
}

.header-nexus-cart {
    display: flex;
    align-items: center;
    color: #232c85;
    text-decoration: none;
}

.header-nexus-cart-icon {
    position: relative;
    display: inline-block;
}

.header-nexus-cart-img {
    width: 32px;
    height: 32px;
}

@media (max-width: 768px) {
    .user-menu-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .admin-dropdown {
        width: 100%;
    }
    
    .admin-dropdown-btn {
        width: 100%;
        justify-content: space-between;
    }
    
    .admin-dropdown-content {
        position: static;
        width: 100%;
        box-shadow: none;
        margin-top: 5px;
    }
}
