body {
    font-family: 'Inter', sans-serif;
    background-color: #f4f6f9;
    color: #333;
}

.navbar {
    background-color: #212529;
}

.navbar-brand {
    font-weight: 600;
    font-size: 1.25rem;
}

.card {
    border: none;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.card-header {
    font-weight: 600;
    background-color: #f8f9fa;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.list-group-item {
    border: none;
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 10px;
    background-color: #ffffff;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}


table {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

th {
    background-color: #f8f9fa;
    font-weight: 600;
}

footer {
    background-color: #212529;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
    margin-top: 20px;
    position: absolute;
    bottom: 0;
    width: 100%;
}