/* Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Basic utilities */
.main-content {
    min-height: 100vh;
}

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

/* Custom scrollbar - site-wide */
::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #0064e1;
}

::-webkit-scrollbar-thumb:hover {
    background: #0064e1;
    box-shadow: -3px 0 0 0 #0064e1;
}

/* Focus styles for accessibility */
a:focus,
button:focus {
    outline: 2px solid #0064e1;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .site-header,
    .site-footer {
        display: none !important;
    }

    body {
        font-size: 10pt;
    }
}
