body {
    font-family: Arial, sans-serif;
    padding: 20px;
    background: #f5f5f5;
}

h2 {
    text-align: center;
}

.table-container {
    width: 80%;
    margin: 0 auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background: #333;
    color: white;
}

tr:hover {
    background: #f1f1f1;
}

.btn {
    padding: 6px 12px;
    text-decoration: none;
    color: white;
    border-radius: 4px;
}

.btn-add {
    background: #28a745;
}

.btn-edit {
    background: #007bff;
}

.btn-delete {
    background: #dc3545;
}