/* ─── BATCH UPLOAD STYLES ────────────────────────────────── */
/* INDEX: Batch table, progress, row editing, retry UI */

/* ─── BATCH PROGRESS ─────────────────────────────────────── */
.batch-progress {
    margin-top: 16px;
    padding: 12px;
    background: rgba(111,255,0,0.05);
    border-radius: 6px;
    border: 1px solid rgba(111,255,0,0.2);
}
.batch-status-text {
    font-size: 12px;
    color: var(--neon);
    margin: 0;
}

/* ─── BATCH TABLE ────────────────────────────────────────── */
.batch-table-wrapper {
    margin-top: 24px;
    overflow-x: auto;
}
.batch-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}
.batch-table thead {
    background: rgba(111,255,0,0.08);
    border-bottom: 1px solid rgba(111,255,0,0.2);
}
.batch-table th {
    padding: 12px;
    text-align: left;
    font-family: var(--font-anton);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--neon);
    font-weight: 700;
}
.batch-table td {
    padding: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.batch-table tbody tr:hover {
    background: rgba(111,255,0,0.03);
}

/* ─── BATCH ROW STATUS ───────────────────────────────────── */
.batch-row-status {
    font-size: 11px;
    font-family: var(--font-anton);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.batch-row-status.queued {
    color: rgba(239,244,255,0.6);
}
.batch-row-status.processing {
    color: var(--neon);
}
.batch-row-status.done {
    color: #6FFF00;
}
.batch-row-status.error {
    color: #ff6464;
}

/* ─── BATCH ROW EDITABLE INPUT ───────────────────────────– */
.batch-row-editable {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(111,255,0,0.15);
    padding: 4px 8px;
    border-radius: 3px;
    color: var(--cream);
    font-family: var(--font-mono);
    font-size: 12px;
    width: 100%;
    box-sizing: border-box;
}
.batch-row-editable:focus {
    outline: none;
    border-color: var(--neon);
    box-shadow: 0 0 6px rgba(111,255,0,0.1);
}
.batch-row-editable:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ─── BATCH ERROR & RETRY ────────────────────────────────– */
.batch-error-msg {
    color: #ff6464;
    font-size: 10px;
    margin-top: 2px;
}
.batch-retry-btn {
    background: rgba(255,100,100,0.1);
    border: 1px solid rgba(255,100,100,0.3);
    color: #ff6464;
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 10px;
    cursor: pointer;
    transition: all var(--trans);
    font-family: var(--font-anton);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.batch-retry-btn:hover {
    background: rgba(255,100,100,0.2);
    border-color: #ff6464;
}

/* ─── FORMAT BUTTONS ─────────────────────────────────────– */
.format-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.format-buttons .btn-neon {
    flex: 1;
    min-width: 160px;
    padding: 14px 24px;
    font-size: 12px;
}

/* ─── RESPONSIVE ─────────────────────────────────────────– */
@media (max-width: 768px) {
    .format-buttons {
        flex-direction: column;
    }
    .format-buttons .btn-neon {
        width: 100%;
        min-width: auto;
    }
    .batch-table {
        font-size: 10px;
    }
    .batch-table th, .batch-table td {
        padding: 8px;
    }
}
