/* Speaker Test page */

.st-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 14px;
}
.st-card h2 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.2px;
}
.st-card p { font-size: 13px; color: var(--text-secondary); margin-bottom: 14px; line-height: 1.6; }

.st-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
    margin-bottom: 14px;
}
.st-field { display: flex; flex-direction: column; gap: 4px; }
.st-field label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-tertiary);
}
.st-value-display {
    font-family: var(--mono);
    font-size: 14px;
    color: var(--text);
    margin-top: 2px;
}

.st-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.st-warning {
    background: var(--orange-soft);
    border: 1px solid rgba(207, 124, 58, 0.2);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: 12px;
    color: var(--text);
    margin-bottom: 14px;
    line-height: 1.5;
}
