body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f7f6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: #04AA6D;
    color: white;
    padding: 10px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 40px;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s;
}

nav a:hover {
    color: #c2f0c2;
}

.content {
    display: flex;
    margin-top: 20px;
}

.sidebar {
    width: 250px;
    padding: 20px;
    background-color: #f8f9fa;
    border-right: 1px solid #dee2e6;
}

.card {
    background-color: white;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.main-content {
    flex: 1;
    padding: 20px;
}

* {
    font-family: 'Viga', sans-serif;
    font-size: 12px;
}

table {
    width: 85%;
    max-width: 85%;
    height: auto;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
    background-color: transparent;
    margin: 20px auto; /* Menambah margin agar tabel berada di tengah */
}

th, td {
    border: 1px solid transparent;
    padding: 8px;
    text-align: left;
    background-color: transparent;
}

th {
    background-color: #f2f2f2;
}

.btn-primary {
    background-color: #04AA6D;
    border-color: #04AA6D;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #038054;
}

.btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

footer {
    background-color: #f8f9fa;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #dee2e6;
}

/* Responsivitas */
@media (max-width: 768px) {
    .content {
        flex-direction: column;
    }
    .sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #dee2e6;
    }
}

/* Gaya kustom untuk menghilangkan garis tabel */
.table-borderless tbody tr td,
.table-borderless thead th,
.table-borderless tbody tr th {
    border: none;
}

/* Gaya kustom untuk kolom pertama */
table td:nth-child(1),
table th:nth-child(1) {
    width: 100px;
    min-width: 100px;
    max-width: 100px;
    word-wrap: break-word;
}

/* Gaya kustom untuk kolom kedua */
table td:nth-child(2),
table th:nth-child(1) {
    width: 200px;
    min-width: 200px;
    max-width: 200px;
    word-wrap: break-word;
}

table tr:nth-child(n+2) td:nth-child(n+3) {
    text-align: right;
}