/* Custom styles to complement Bootstrap theme */
.alert {
    transition: opacity 0.3s ease-in-out;
}

.card {
    margin-bottom: 1rem;
}

.navbar {
    margin-bottom: 2rem;
}

.list-group-item {
    background-color: var(--bs-dark);
    border-color: var(--bs-gray-700);
}

.modal-content {
    background-color: var(--bs-dark);
    border-color: var(--bs-gray-700);
}

.table {
    color: var(--bs-light);
}

/* Custom scrollbar for better dark theme integration */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bs-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--bs-gray-700);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--bs-gray-600);
}
