body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

.container {
    margin-top: 50px;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

form {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

form .form-label {
    font-weight: bold;
}

form .form-control {
    margin-bottom: 15px;
}

.table {
    background-color: #ffffff;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.table th {
    background-color: #532b8c;
    color: white;
}

.table td, .table th {
    padding: 15px;
    text-align: left;
}

.table tbody tr:hover {
    background-color: #f1f1f1;
}

.table th, .table td {
    vertical-align: middle;
}

.table .btn-sm {
    padding: 5px 10px;
}

