/* TimeWalk Dashboard — auth UI (menu + editors-only modal) */

.menu-auth-divider {
    height: 1px;
    margin: 6px 12px;
    background: var(--border, #2a2a35);
}

.hamburger-menu .menu-signin-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hamburger-menu .menu-google-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.menu-user-block {
    padding: 10px 16px;
    color: var(--text-bright, #ddd);
    font-size: 13px;
    line-height: 1.4;
}

.menu-user-block .menu-user-name {
    font-weight: 600;
    color: var(--text-bright, #fff);
    word-break: break-word;
}

.menu-user-block .menu-user-role {
    color: var(--text-dim);
    font-size: 11px;
    margin-top: 2px;
}

.menu-user-block .menu-user-role.admin  { color: #ff8a65; }
.menu-user-block .menu-user-role.editor { color: #6fcf97; }

.hamburger-menu .menu-signout-link {
    color: var(--text-dim);
    font-size: 13px;
}

/* ----- Editors-only modal ----- */
.editors-only-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.editors-only-overlay.open {
    display: flex;
}

.editors-only-panel {
    background: var(--panel-bg, #15151c);
    border: 1px solid var(--border-dim, #2a2a35);
    border-radius: 8px;
    width: min(420px, 92vw);
    padding: 22px 24px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.editors-only-panel h3 {
    margin: 0 0 10px 0;
    color: var(--text-bright, #fff);
    font-size: 16px;
}

.editors-only-panel p {
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 18px 0;
}

.editors-only-panel .actions {
    display: flex;
    justify-content: center;
    gap: 10px;
}
