/* che der; ALO Audit Core — public form styles */

/* Locked checkbox choice row */
.alo-audit-choice-locked {
    opacity: 0.55 !important;
    cursor: not-allowed;
}

.alo-audit-choice-locked input[type="checkbox"] {
    pointer-events: none;
    cursor: not-allowed;
}

.alo-audit-choice-locked label {
    cursor: not-allowed;
}

/* Tooltip — created and positioned entirely by JS (alo-audit-public.js) */
#alo-audit-tip {
    position: fixed;
    background: #1f2937;
    color: #fff;
    font-size: 12px;
    line-height: 1.5;
    padding: 8px 12px;
    border-radius: 6px;
    width: 220px;
    max-width: 90vw;
    z-index: 99999;
    box-shadow: 0 4px 16px rgba(0,0,0,.28);
    pointer-events: none;
    white-space: normal;
}

#alo-audit-tip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #1f2937;
}

/* Hidden choices — completely off-screen for screenreaders too */
.alo-audit-choice-hidden {
    display: none !important;
}
