/* theme-admin.css — Admin sidebar styles (green accent) */

.sidebar-link {
    transition: all 0.2s ease;
}

.sidebar-link:hover {
    background: rgba(34, 197, 94, 0.1);
    color: #4ade80;
}

.sidebar-link.active {
    background: linear-gradient(90deg, rgba(34, 197, 94, 0.15) 0%, transparent 100%);
    color: #4ade80;
    border-left: 3px solid #22c55e;
}

/* Sidebar group dot */
.sidebar-group-toggle .group-dot {
    background: #22c55e;
    opacity: 0.5;
}

/* Active group highlight (collapsed with active page) */
.sidebar-group-toggle.group-active .group-label {
    color: #4ade80;
}

.sidebar-group-toggle.group-active .group-dot {
    background: #22c55e;
    opacity: 1;
    box-shadow: 0 0 6px rgba(34, 197, 94, 0.4);
}

/* Method icon (passkey / 2FA rows) — admin green accent */
.method-icon {
    width: 40px;
    height: 40px;
    background: rgba(34, 197, 94, 0.1);
    color: #4ade80;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
