body {
    font-family: sans-serif;
    margin: 20px;
    background-color: #f4f4f9;
}

h1 {
    color: #333;
    text-align: center;
}

section {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

input[type="text"],
button {
    padding: 10px;
    margin-right: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

input[type="text"] {
    width: 250px;
}

button {
    background-color: #007bff;
    color: white;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s;
}

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

/* Table Styling */
#staff-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

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

#staff-table th {
    background-color: #e9ecef;
    color: #333;
}