/* Admin Dashboard Access Button - Discrete 3-dot menu */
.admin-menu-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 74, 173, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    font-size: 20px;
}

.admin-menu-btn:hover {
    background: rgba(0, 102, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 74, 173, 0.3);
}

.admin-menu-btn i {
    transform: rotate(90deg);
}

/* Tooltip */
.admin-menu-btn::before {
    content: 'Dashboard Analytics';
    position: absolute;
    right: 50px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.admin-menu-btn:hover::before {
    opacity: 1;
}

@media (max-width: 768px) {
    .admin-menu-btn {
        top: 15px;
        right: 15px;
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
}