.simulation-button {
    background: var(--surface-console);
    color: var(--text-secondary);

    border: 1px solid var(--border-console);
    border-radius: var(--radius-button);

    padding: 8px 12px;

    font-size: 13px;
    font-weight: 500;

    box-shadow: none;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}

.simulation-button:hover {
    background: var(--surface-hover);
    color: var(--text-primary);
    border-color: var(--border-panel);

    filter: none;
}

.simulation-button.active {
    color: var(--text-primary);
    border-color: var(--border-console);
    box-shadow: none;
}

.simulation-button.inactive {
    color: var(--text-tertiary);
    opacity: 0.55;
}

#guardianSimulationLab {
    margin-bottom: var(--space-xl);
}

/* STATES */

.state-success {
    color: var(--state-success);
}

.state-warning {
    color: var(--state-warning);
}

.state-critical {
    color: var(--state-critical);
}

.state-neutral {
    color: var(--state-neutral);
}

/* SEMANTIC STATES */

.panel-meta {
    margin-top: var(--space-md);
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    line-height: var(--line-height-normal);
}

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: var(--space-sm);

    text-align: center;

    color: var(--text-tertiary);
}

.empty-state-icon {
    font-size: 20px;
    line-height: 1;
}

.empty-state-title {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    font-weight: 500;
}

.empty-state-subtext {
    font-size: var(--font-size-sm);
    color: var(--text-tertiary);
    opacity: 0.65;
}
