﻿/* FOOTER STYLES - Matching Original Design */
.footer {
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
    padding: 3rem 0;
    margin-top: auto;
    text-align: center;
}

.footer-links {
    margin: 1.5rem 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.footer p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer .text-muted {
    opacity: 0.7;
    color: rgba(255, 255, 255, 0.7) !important;
}

/* FIX FOR DROPDOWN TRUNCATION */
.dropdown-menu {
    position: absolute !important;
    max-height: 80vh !important;
    overflow-y: auto !important;
}

/* Ensure dropdowns aren't clipped */
.navbar {
    overflow: visible !important;
}

.navbar-nav {
    overflow: visible !important;
}

/* Fix for body overflow without breaking dropdowns */
body {
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}
