/* Role view switcher button — single styling that works across the four
   topbar variants (teacher app .tc-topbar-right, owner .adm-topbar-actions,
   principal .sa-topbar-actions, counselor .co-topbar-actions). */

#tcRoleSwitcher.tc-role-switcher {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    margin-right: 8px;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    color: #065f46;
    border: 1px solid #6ee7b7;
    border-radius: 999px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(5, 150, 105, 0.08);
    transition: background 0.15s, border-color 0.15s, transform 0.05s;
    white-space: nowrap;
}

#tcRoleSwitcher.tc-role-switcher:hover {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-color: #34d399;
}

#tcRoleSwitcher.tc-role-switcher:active {
    transform: translateY(1px);
}

#tcRoleSwitcher .tc-role-switcher-icon {
    font-size: 13px;
    font-weight: 700;
}

#tcRoleSwitcher .tc-role-switcher-label {
    font-size: 12px;
    letter-spacing: 0.2px;
}
