﻿/* Custom Variables for consistency */
:root {
    --primary-color: #1b6ec2;
    --primary-hover: #1861ac;
}

/* Flexbox Sticky Footer Logic */
html, body {
    height: 100%;
}

.logo-img {
    max-height: 60px; /* Reduced from 90 for a sleeker look */
    width: auto;
    transition: transform 0.3s ease;
}

    .logo-img:hover {
        transform: scale(1.05);
    }

/* Typography & Links */
a {
    color: var(--primary-color);
    transition: color 0.2s ease-in-out;
}

    a:hover {
        color: var(--primary-hover);
        text-decoration: underline;
    }

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-hover);
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
}

/* Modern Navbar Adjustments */
.navbar {
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar-brand {
    font-weight: 700;
}

/* Responsive adjustments for the Main Title */
@media (max-width: 576px) {
    h1 {
        font-size: 1.2rem !important;
        margin-top: 10px;
    }
}

/* Footer Styling */
.footer {
    background-color: #f8f9fa;
}

/* Shadow depth improvement */
.box-shadow {
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
}

.main-content {
    flex: 1;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}
    .main-content:has(.sign-container) {
        padding: 1rem 0.75rem;
        max-width: 1600px;
    }