body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f4;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

table {
    width: 100%;
    border-collapse: collapse; /* Menghindari double borders */
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    border: 1px solid #ddd; /* Tambahkan border di sekitar tabel */
}

thead {
    background-color: #007bff;
    color: #ffffff;
}

thead th {
    padding: 15px;
    text-align: left;
    vertical-align: middle; /* Menambahkan ini */
    font-size: 16px;
}


tbody td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    color: #333;
}

tbody tr:hover {
    background-color: #f9f9f9;
}

tbody tr:last-child td {
    border-bottom: none;
}

.icon {
    margin-right: 10px;
    color: #007bff;
    font-size: 18px;
}