/* ===============================
   🌐 Global Loader Styling
   =============================== */

#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8); /* Slightly more opaque */
    z-index: 1060; /* Higher than everything else */
    display: none; /* <-- THIS IS THE CRITICAL LINE */
    flex-direction: column; /* To stack the spinner and text */
    justify-content: center;
    align-items: center;
}