/* Shared Navigation and Layout Styles for Kayve */

/* CRITICAL: Consistent 1400px width across ALL pages - navbar AND content */
.container-fluid {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

/* Ensure consistent navbar styling across all pages */
.navbar-brand strong {
    font-weight: 600;
}

/* Consistent spacing and hover effects for nav links */
.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    transition: color 0.15s ease-in-out;
}

.navbar-nav .nav-link:hover {
    color: rgba(255, 255, 255, 1) !important;
}

/* Ensure proper spacing between nav items */
.navbar-nav .nav-link.me-3 {
    margin-right: 1rem !important;
}

/* Make navbar brand consistent */
.navbar-brand {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.25rem;
    text-decoration: none;
}

.navbar-brand:hover {
    color: rgba(255, 255, 255, 1) !important;
}