#brr-loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999; /* Extremely high to cover everything */
    display: flex;
    justify-content: center;
    align-items: center;
    /* Background color is handled via inline styles in PHP */
}

.brr-loader-content {
    max-width: 100%;
    max-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brr-loader-image {
    max-width: 90vw; /* Responsive constraint */
    height: auto;
}
