body{
    background-color: #eeeff5;
    font-family: 'Roboto', sans-serif;
}

.header {
    --background-color: #1D2D3E;
    --heading-color: #ffffff;
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 15px 0;
    transition: all 0.5s;
    z-index: 997;
}

table {
    width: 100%;
    margin-bottom: 1rem;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

th {
    background-color: #007bff;
    color: white;
    text-align: center;
    font-weight: 600;
    padding: 15px 10px;
    border-bottom: 2px solid #ddd;
}

td {
    padding: 12px 10px;
    text-align: center;
    vertical-align: middle;
    border-bottom: 1px solid #f0f0f0;
}

.table-hover tbody tr:hover {
    background-color: #e8f0fe;
    transform: scale(1.02);
    transition: all 0.3s ease-in-out;
}

.table-hover tbody tr {
    transition: all 0.3s ease-in-out;
}

.btn-primary {
    background-color: #007bff;
    border: none;
    color: white;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

.btn-primary:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

.dataTables_length {
    margin-bottom: 15px;
}

.dataTables_filter {
    margin-bottom: 15px;
}

table.dataTable {
    border-collapse: collapse;
}

table.dataTable td, table.dataTable th {
    padding: 12px 18px;
    border-bottom: 1px solid #dee2e6;
}

table.dataTable tr:hover {
    background-color: #f4f4f4;
}

