/* Minimal Safari Fix - Only target the specific opacity issue */

/* Only fix the main element opacity - nothing else */
main {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Safari-specific override */
@supports (-webkit-appearance: none) {
    main {
        opacity: 1 !important;
        visibility: visible !important;
        -webkit-opacity: 1 !important;
        -webkit-visibility: visible !important;
    }
}