.table-container {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

.search-input {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.student-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 10px;
}

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

.student-table th {
    background-color: #f4f4f4;
    font-weight: bold;
}

.student-table tr:hover {
    background-color: #f1f1f1;
}

.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pagination-btn {
    padding: 8px 16px;
    background-color: orange;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.pagination-btn:hover {
    background-color: orangered;
}

#pageInfo {
    font-size: 14px;
}

/* #form_tambah_guru_baru .kelas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
} */

#popup_select_rombel .rombel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

#form_tambah_guru_baru .checklist_form_guru {
    display: flex;
    align-items: center;
    gap: 3px;
}

#form_tambah_guru_baru .checklist_form_guru label {
    font-size: 14px;
}

#form_tambah_guru_baru .checklist_form_guru input {
    width: 15px;
    margin: 0;
}

#popup_select_rombel .checklist_form_guru {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

#popup_select_rombel .checklist_form_guru label {
    font-size: 14px;
    width: 80%;
}

#popup_select_rombel .checklist_form_guru input {
    width: 15px;
    margin: 0;
}

@media (max-width: 600px) {
    .student-table th, .student-table td {
        padding: 8px;
        font-size: 14px;
    }

    .pagination-btn {
        padding: 6px 12px;
        font-size: 14px;
    }
}
