.ge-action-overlay {
    position: fixed;
    inset: 0;
    z-index: 20050;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(16, 42, 67, .28);
    backdrop-filter: blur(3px);
}

body.ge-action-busy .ge-action-overlay {
    display: flex;
}

body.ge-action-busy {
    cursor: wait;
}

.ge-action-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: #16324f;
    border: 1px solid #efe3c4;
    border-radius: 999px;
    padding: 10px 18px 10px 12px;
    box-shadow: 0 16px 40px rgba(16, 42, 67, .2);
    font-size: 14px;
    font-weight: 700;
}

.ge-mini-spin {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2.5px solid #f4ead0;
    border-top-color: #c9a227;
    animation: ge-spin .65s linear infinite;
    flex: 0 0 22px;
}

.ge-btn-loading {
    pointer-events: none !important;
    opacity: .85;
}

.ge-btn-loading .ge-mini-spin {
    width: 16px;
    height: 16px;
    border-width: 2px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
}

@keyframes ge-spin {
    to { transform: rotate(360deg); }
}
