/* ==========================================
   SIMAN ENTERPRISE - TABLE & FORM CSS
   Kustomisasi Tabel Inventaris & Input Modal
========================================== */

/* Header Tabel Inventaris */
.inv-table-header th {
    border-bottom: 2px solid #e2e8f0;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    font-weight: 800;
    background-color: #f8fafc;
}

/* Tombol Aksi di dalam Tabel (Kecil & Kotak) */
.inv-action-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
    border: 1px solid transparent;
}

/* Varian Warna Tombol Aksi */
.btn-mutasi {
    background-color: #f8fafc;
    color: #64748b;
}
.btn-mutasi:hover {
    background-color: #e0e7ff;
    color: #4f46e5;
    border-color: #c7d2fe;
}

.btn-qr {
    background-color: #f8fafc;
    color: #64748b;
}
.btn-qr:hover {
    background-color: #d1fae5;
    color: #059669;
    border-color: #a7f3d0;
}

.btn-edit {
    background-color: #f8fafc;
    color: #64748b;
}
.btn-edit:hover {
    background-color: #fef3c7;
    color: #d97706;
    border-color: #fde68a;
}

.btn-delete {
    background-color: #f8fafc;
    color: #64748b;
}
.btn-delete:hover {
    background-color: #ffe4e6;
    color: #e11d48;
    border-color: #fecdd3;
}

/* Standarisasi Label Modal Form */
.modal-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Standarisasi Input Modal Form */
.modal-input {
    width: 100%;
    padding: 10px 16px;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    color: #1e293b;
    transition: all 0.2s;
}
.modal-input:focus {
    background-color: #ffffff;
    border-color: #818cf8;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

/* Input Read-Only khusus NUP & Kode Barang */
.input-readonly-gray {
    background-color: #f1f5f9;
    color: #94a3b8;
    cursor: not-allowed;
    font-weight: 600;
}
.input-readonly-orange {
    background-color: #fff7ed;
    border-color: #ffedd5;
    color: #ea580c;
    cursor: not-allowed;
    font-weight: 700;
}