/* Pondeer — minimal reset, all brand styles are in templates */

body, html {
    margin: 0;
    overflow-x: hidden;
}

/* Loader overlay */
.global-loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.global-loader-overlay.global-loader-visible {
    opacity: 1;
}

.global-loader-spinner {
    width: 3rem;
    height: 3rem;
}

#initial-loader {
    display: none;
}
