/**
 * @file context.css
 * @description Estilos para gerenciamento de contexto de Superuser
 */

/* Context Header */
.header-context {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 4px 12px;
    background: var(--info-color-light);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.header-context:hover {
    opacity: 0.8;
}

.header-context i {
    color: var(--info-color);
    font-size: 14px;
}

.header-context span {
    color: var(--text-primary);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .header-context {
        padding: 2px 8px;
        font-size: 10px;
    }

    .header-context i {
        font-size: 12px;
    }
}