body {
    font-family: Arial, sans-serif;
    font-size: 11pt;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 900px;
    margin: auto;
    background: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1, p {
    text-align: center;
}

/* Kunci responsivitas ada di sini */
.responsive-table-container {
    overflow-x: auto; /* Memungkinkan scroll horizontal jika layar kecil */
    margin-top: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    /* Min-width memastikan tabel tidak terlalu kecil pada layar mobile */
    min-width: 600px; 
}

th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

thead th {
    background-color: #007bff;
    color: white;
    font-weight: bold;
}

tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}

tfoot th {
    background-color: #333;
    color: white;
    text-align: left;
}

.currency {
    text-align: right; /* Meratakan angka ke kanan */
}