
.spe-checklist-wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 8px 12px;
    margin-top: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    z-index: 9999;
    display: none;
    width: 260px;
    font-size: 13px;
}
.spe-checklist-wrapper ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.spe-checklist-wrapper li {
    margin: 4px 0;
    color: #999;
}
.spe-checklist-wrapper li.valid {
    color: green;
    font-weight: 600;
}
.spe-checklist-wrapper li::before {
    content: "✖ ";
    color: #999;
}
.spe-checklist-wrapper li.valid::before {
    content: "✔ ";
    color: green;
}
