﻿/* Loader overlay */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

    .loader-overlay.show {
        display: flex;
    }

.loader-content {
    text-align: center;
}

    .loader-content img {
        width: 160px;
        height: 80px;
    }

    .loader-content p {
        color: white;
        margin-top: 10px;
        font-size: 16px;
    }
