table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
}

table th, table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
    word-wrap: break-word;
    white-space: pre-wrap;
    max-width: 100px;
}

table th {
    background-color: #f4f4f4;
}

.pagination {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.pagination button {
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.pagination button:disabled {
    background-color: #ccc;
}

.pagination button + button {
    margin-left: 10px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
}

.modal-content {
    background-color: #ffffff;
    margin: 400px auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 250px;
    border-radius: 8px;
    text-align: center;
}

.modal-header {
    font-size: 18px;
    margin-bottom: 15px;
}

.modal-footer {
    display: flex;
    justify-content: space-around;
}

.modal-footer button {
    padding: 10px 15px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin: 0 10px;
}

.modal-footer button:hover {
    background-color: #0056b3;
}

.modal-message {
    margin: 15px 0;
    font-size: 16px;
    color: #d9534f;
}