/* ===== CONFIG MODAL ===== */
.config-tabs .tab-btn {
    background: #2a2a2a;
    border: 1px solid #444;
    color: #ccc;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.config-tabs .tab-btn:hover {
    background: #333;
    color: #fff;
}

.config-tabs .tab-btn.active {
    background: #e31c23;
    border-color: #e31c23;
    color: #fff;
}

.results-box {
    background: #111;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 16px;
    min-height: 160px;
    max-height: 320px;
    overflow-y: auto;
    color: #ddd;
    font-size: 0.92rem;
}

.media-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #2a2a2a;
}

.media-item:last-child {
    border-bottom: none;
}

.status-ok { color: #4caf50; }
.status-fail { color: #e31c23; }
.status-pending { color: #ff9800; }
