/* Layout specific styles for header, footer, and main content */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f8f9fc;
}

.main-content {
    flex: 1;
    padding-bottom: 2rem;
}
.site-header {
    background: linear-gradient(135deg, #0DAEF2 0%, #0A8BC0 100%);
    padding: 0.75rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.site-header .navbar {
    padding: 0;
    background: transparent !important;
    border: none !important;
}

.site-header .navbar-brand {
    color: #fff;
    font-weight: 700;
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
    transition: all 0.2s;
}

.site-header .navbar-brand:hover {
    transform: translateY(-2px);
    color: #f8f9fa;
}

.site-header .navbar-brand-icon {
    margin-right: 0.5rem;
    color: #fff;
}

.site-header .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.site-header .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.site-header .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.2s;
    border-radius: 0.25rem;
    margin: 0 0.2rem;
}

.site-header .nav-link:hover {
    color: #fff !important;
    background-color: rgba(255, 255, 255, 0.1);
}

.site-header .nav-link.active {
    color: #fff !important;
    background-color: rgba(255, 255, 255, 0.2);
}

.site-footer {
    background-color: #343a40;
    color: #f8f9fa;
    padding: 2.5rem 0 1.5rem;
    margin-top: 3rem;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.2s;
}

.site-footer a:hover {
    color: #fff;
    text-decoration: none;
}

.footer-heading {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
}

.footer-link {
    display: block;
    margin-bottom: 0.75rem;
}

.footer-link i {
    margin-right: 0.5rem;
    width: 16px;
    text-align: center;
}

.footer-social {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.disclaimer-section {
    margin-top: 2rem;
}

.disclaimer-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 800px;
    margin: 0 auto;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.6);
}
