/* GFWait — global "please wait" modal. Vanilla, no Bootstrap/jQuery. */

.gfwait-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
}

.gfwait-overlay.gfwait-active {
    display: flex;
}

.gfwait-card {
    background: #fff;
    border: 3px solid #f26522;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    padding: 28px 36px;
    min-width: 280px;
    max-width: 90vw;
    text-align: center;
    font-family: inherit;
    color: #222;
}

.gfwait-card img {
    height: 128px;
    width: auto;
    display: block;
    margin: 0 auto 14px auto;
}

.gfwait-card .gfwait-message {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    min-height: 22px;
    transition: opacity 0.25s ease;
}

.gfwait-card .gfwait-message.gfwait-fading {
    opacity: 0;
}
