/* Base CSS - Shared styles across all portals */

/* Ensure fixed navbar doesn't overlap content */
body {
    padding-top: 56px;
}

/* Utility classes */
.text-primary-custom {
    color: #2c3e50;
}

.bg-primary-custom {
    background-color: #2c3e50;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: white;
    padding: 8px;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}
