/* ───────── FORM ───────── */

.table-wrapper .info-form {
    width: 100%;
    max-width: 700px;
    padding: 12px;
    box-sizing: border-box;
}

/* ───────── GRID SYSTEM ───────── */

.table-wrapper .info-row {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 10px 16px;
    align-items: center;
    margin-bottom: 10px;
}

/* ───────── LABELS ───────── */

.table-wrapper .info-row label {
    font-weight: 600;
    font-size: 13px;
}

/* ───────── INPUTS / SELECTS ───────── */

.table-wrapper .info-row input,
.table-wrapper .info-row select {
    width: 100%;
    max-width: 100%;
    padding: 8px 10px;
    border: 1px solid #cfcfcf;
    border-radius: 6px;
    font-size: 15px;
    box-sizing: border-box;
    min-width: 0;
    background-color: white;
}

/* ───────── DISABLED ───────── */

.table-wrapper .info-row input:disabled,
.table-wrapper .info-row select:disabled {
    background-color: #f5f5f5;
    color: #666;
}

/* ───────── RESPONSIVE ───────── */

#finalize_flag {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

@media (max-width: 900px) {
    .table-wrapper .info-row {
        grid-template-columns: 1fr;
    }

    .table-wrapper .info-row label,
    .table-wrapper .info-row input,
    .table-wrapper .info-row select {
        grid-column: 1 / -1;
        width: 100%;
    }
}