/* Bootstrap 5 Migration Fixes */

/* Fix navbar brand spacing */
.navbar-brand {
    margin-right: 1rem;
}

/* Ensure navbar stays dark */
.navbar-dark {
    background-color: #343a40 !important;
}

/* Fix table striping if needed */
.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.05);
}

/* DataTables pagination Bootstrap 5 fix */
.dataTables_wrapper .dataTables_paginate {
    margin-top: 1rem;
}

/* Form control consistency */
.form-control:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Button spacing */
.btn + .btn {
    margin-left: 0.5rem;
}

/* Card styling for modern look */
.card {
    border-radius: 0.375rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}