﻿/* Basic site styles for BatchVision.Frontend */

/* Reset some bootstrap defaults to work with our custom styling */
html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

/* Override any conflicting Bootstrap styles */
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: none;
}

/* Ensure our custom styles take precedence */
body {
    margin: 0;
    padding: 0;
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Utility classes */
.text-muted {
    color: var(--medium-gray, #9CA3AF) !important;
}

/* Accessibility improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for accessibility */
.language-btn:focus,
button:focus {
    outline: 2px solid var(--accent-violet, #8B63FF);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .language-selector {
        display: none;
    }

    body {
        background: white !important;
        color: black !important;
    }
}
