body {
    font-family: 'Arial', sans-serif;
    background-color: #e9f7ef;
}

.custom-navbar {
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
}

.table {
    margin-top: 20px;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #c8e6c9; 
}

.table-striped tbody tr:nth-of-type(even) {
    background-color: #f1f8e9; 
}

.table-hover tbody tr:hover {
    background-color: #81c784; 
}

.table th {
    background-color: #388e3c; 
    color: white;
}

footer {
    margin-top: auto;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
