/* noto-sans-display-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Sans Display';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/noto-sans-display-v26-latin-regular.eot'); /* IE9 Compat Modes */
  src: url('../fonts/noto-sans-display-v26-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/noto-sans-display-v26-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/noto-sans-display-v26-latin-regular.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/noto-sans-display-v26-latin-regular.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/noto-sans-display-v26-latin-regular.svg#NotoSansDisplay') format('svg'); /* Legacy iOS */
}

/* Apply the font to the entire page */
body {
    font-family: 'Noto Sans Display', sans-serif;
    font-size: 16px;
}

/* Centered "Please Wait" message */
#wait-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    font-family: 'Noto Sans Display', sans-serif;
    background-color: rgba(231, 76, 60, 0.9); /* Slightly transparent deep red background color (adjust the last value for transparency) */
    border: 8px solid #c0392b; /* Slightly darker red border */
    color: #fff; /* White text color for high contrast */
    padding: 16px; /* Add some padding if needed */
    text-align: center; /* Center the text horizontally */
    border-radius: 20px; /* Rounded corners with a 20px radius */
}



