/* ===== Umum ===== */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #e0e0e0;
    padding-bottom: 80px;
}

/* ===== Container Utama ===== */
.container {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: #1e1e1e;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
}

/* ===== Teks Umum ===== */
h1, h2, h4, p, label {
    color: #e0e0e0;
}

label {
    font-weight: 500;
    color: #ccc;
}

.form-label {
    color: #cccccc;
}

.text-secondary {
    color: #bbbbbb !important;
}

input::placeholder {
    color: #999;
}

/* ===== Input dan Form ===== */
input[type="text"],
input[type="date"],
input[type="number"],
input.form-control {
    width: 100%;
    padding: 10px 12px;
    box-sizing: border-box;
    background-color: #2c2c2c;
    color: #ffffff;
    border: 1px solid #444;
    border-radius: 8px;
    transition: border-color 0.3s ease-in-out;
}

input:focus {
    border-color: #0d6efd;
    outline: none;
    background-color: #333;
}

/* ===== Tombol ===== */
button {
    padding: 10px 16px;
    background-color: #0d6efd;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-right: 5px;
    transition: background-color 0.2s ease-in-out;
}

button:hover {
    background-color: #0b5ed7;
}

/* Tambah Karung */
#tambahBaris {
    border: 1px dashed #3b82f6;
    color: #3b82f6;
    font-weight: 500;
    background-color: transparent;
}

#tambahBaris:hover {
    background-color: #1f1f1f;
}

#tambahBaris i {
    color: #3b82f6;
}

/* Simpan dan Cetak */
#cetakStruk {
    background-color: #6c757d;
    color: #fff;
    border: none;
}

#cetakStruk:hover {
    background-color: #5a6268;
}

.btn-success {
    background-color: #198754;
    border: none;
}

.btn-success:hover {
    background-color: #157347;
}

/* Tombol Hapus */
.btn-danger.btn-sm {
    background-color: #dc3545;
    border: none;
}

.btn-danger.btn-sm:hover {
    background-color: #bb2d3b;
}

/* ===== Tabel ===== */
.table {
    background-color: #1e1e1e;
    color: #ddd;
}

.table th, .table td {
    border-color: #555;
}

.table thead th {
    color: #f0f0f0;
    background-color: #252525;
    font-weight: 600;
}

.table td input[type="number"] {
    background-color: #3a3a3a;
    color: #fff;
    border: 1px solid #555;
    border-radius: 6px;
    padding: 6px 10px;
    width: 100%;
}

.table caption,
.table .table-title,
label[for="dataKarung"],
.text-muted {
    color: #aaaaaa;
    font-weight: 500;
}

/* ===== Modal dan Card ===== */
.card {
    background-color: #1e1e1e;
    border: none;
}

.card-body {
    padding: 20px;
}

.modal-content {
    background-color: #1e1e1e;
    color: #e0e0e0;
}

.modal-header {
    border-bottom: 1px solid #333;
}

.modal-footer {
    border-top: 1px solid #333;
}
