body {
    font-family: Arial, sans-serif;
    margin: 20px;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}
table, th, td {
    border: 1px solid #ddd;
}
th, td {
    padding: 10px;
    text-align: left;
}
th {
    background-color: #f4f4f4;
}
tr:nth-child(even) {
    background-color: #f9f9f9;
}
.container {
    max-width: 1000px;
    margin: auto;
}
.action-buttons {
    display: flex;
    gap: 5px;
}
.action-buttons button {
    padding: 5px 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.edit-button {
    background-color: #007bff;
    color: white;
}
.delete-button {
    background-color: #dc3545;
    color: white;
}