/* LightBonus Alert Popups */

#lb-alert-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,.6);
    align-items: center;
    justify-content: center;
}

#lb-alert-box {
    background: #1A2E35;
    border: 0.5px solid #2A444B;
    border-radius: 16px;
    padding: 24px 22px 22px;
    max-width: 340px;
    width: 92%;
    position: relative;
    font-family: var(--font-sans, sans-serif);
    text-align: left;
}

#lb-alert-close {
    position: absolute;
    top: 14px;
    right: 16px;
    color: #5C7A80;
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
}

#lb-alert-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

#lb-alert-icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

#lb-alert-icon {
    font-size: 18px;
}

#lb-alert-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

#lb-alert-body {
    font-size: 13px;
    color: #9BBCC2;
    line-height: 1.6;
    margin-bottom: 20px;
}

#lb-alert-btn {
    width: 100%;
    padding: 11px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    color: black;
}

