
body {
    transition: background-color 0.3s, color 0.3s;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.theme-switcher {
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 1030;
}

.card {
    border-radius: .75rem;
}


[data-bs-theme="dark"] {
    background-color: #212529;
    color: #dee2e6;
}

[data-bs-theme="dark"] .bg-light,
[data-bs-theme="dark"] .bg-body-tertiary {
    background-color: #343a40 !important;
}

[data-bs-theme="dark"] .table-striped > tbody > tr:nth-of-type(odd) > * {
    --bs-table-accent-bg: rgba(255, 255, 255, 0.05);
}

[data-bs-theme="dark"] .border-bottom {
    border-bottom-color: #495057 !important;
}
[data-bs-theme="dark"] .border-top {
    border-top-color: #495057 !important;
}

[data-bs-theme="dark"] h1, [data-bs-theme="dark"] h2 {
    color: #f8f9fa;
}

[data-bs-theme="dark"] .card {
    background-color: #343a40;
    border-color: rgba(255,255,255,.125);
}

[data-bs-theme="dark"] .footer {
    background-color: #343a40 !important;
}