#abc-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    padding: 10px;
}
#abc-wrapper._warning::before {
    content: "";
    position: absolute;
    bottom: -30px;
    right: -30px;
    z-index: 1;

    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.3);
}
#abc-captcha {
    position: relative;
    z-index: 3;
    background: #fff;
    border: 1px solid #ccc;
    padding: 10px 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

#abc-captcha label {
   display: flex;
   align-items: center;
   gap: 10px;
}

#abc-captcha label input {
   cursor: pointer;
}

#abc-inline-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 8px;
    border: 2px solid #ccc;
    border-top: 2px solid #0073aa;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    vertical-align: middle;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

