/* Styling for the table */
.table {
    font-family: 'Arial', sans-serif;
    border-radius: 8px;
    margin-top: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow effect */
}

.table th {
    background-color: #4e73df; /* Dark blue header */
    color: white;
    font-weight: bold;
    text-align: center;
}

.table td {
    background-color: #f8f9fc; /* Light background for table cells */
    text-align: center;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #e9ecef; /* Light gray striped rows */
}

.table-hover tbody tr:hover {
    background-color: #d1e7fd; /* Light blue background on hover */
}

.table-bordered {
    border: 2px solid #ddd; /* Light border around table */
}

.table-bordered td, .table-bordered th {
    border: 1px solid #ddd;
}

.table-shadow {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add a subtle shadow effect */
}

h3 {
    color: #0037f5;
}

.btn {
    font-weight: bold;
    padding: 10px 20px;
    background-color: #28a745;
    color: white;
    border-radius: 5px;
}

.btn:hover {
    background-color: #218838; /* Darker green on hover */
}

.mt-4 {
    margin-top: 30px;
}
