/* QR Portal Custom Styles - Fixes for browser compatibility warnings */

/* Fix webkit-text-size-adjust compatibility */
body {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Fix text-align match-parent compatibility - Override Tabler */
th {
    text-align: inherit !important; /* More compatible alternative with !important to override Tabler */
}

/* Ensure all table headers use inherit instead of webkit prefix */
table th,
.table th {
    text-align: inherit !important;
}

/* Ensure proper text rendering across browsers */
html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Additional custom styles can go here */
#docTabs {
    background-color: #333; /* Dark background for contrast */
    color: white; /* White text */
}
#docTabs li,
#docTabs a {
    color: white;
}

  
#docTabs .nav-link {
    color: white;
}  
