.footer {
    padding: 1rem;
    border-top: 1px solid var(--bs-border-color);
    margin-left: 240px;
    background-color: var(--bs-tertiary-bg);
    margin-top: auto; /* Pushes footer to the bottom */
}

[data-bs-theme="dark"] .footer {
    background: linear-gradient(270deg, #1e1b4b 0%, #3730a3 100%);
}

[data-bs-theme="light"] .footer {
    background: linear-gradient(270deg, #e0e7ff 0%, #eef2ff 100%);
}

@media (max-width: 991.98px) {
    .footer {
        margin-left: 0;
    }
}