/* ========================================
   Checklisten Overlay
   ======================================== */

.aca-cl-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.aca-cl-container {
    background: #fff;
    max-width: 700px;
    width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.aca-cl-header {
    padding: 20px 30px;
    border-bottom: 2px solid #88b441;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}
.aca-cl-header h2 {
    margin: 0;
    font-size: 20px;
    color: #1a243b;
}
.aca-cl-close {
    background: none; border: none;
    font-size: 32px; color: #666;
    cursor: pointer; line-height: 1;
}
.aca-cl-close:hover { color: #000; }

.aca-cl-body {
    padding: 24px 30px;
    overflow-y: auto;
    flex: 1;
}

.aca-cl-body h3 {
    font-size: 13px;
    text-transform: uppercase;
    color: #88b441;
    margin: 20px 0 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.aca-cl-body h3:first-child { margin-top: 0; }

.aca-cl-list {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
}
.aca-cl-list li {
    margin: 0;
}
.aca-cl-list label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
    padding: 6px 0;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.15s;
}
.aca-cl-list label:hover {
    background: #f9f9f9;
}
.aca-cl-list input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 1px;
    accent-color: #88b441;
}
.aca-cl-list input[type="checkbox"]:checked + span {
    text-decoration: line-through;
    color: #999;
}

.aca-cl-footer {
    padding: 16px 30px;
    border-top: 1px solid #eee;
    text-align: center;
    flex-shrink: 0;
}
.aca-cl-pdf-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #88b441;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.aca-cl-pdf-btn:hover { background: #75a036; }

/* Mobile */
@media (max-width: 768px) {
    .aca-cl-container { max-height: 90vh; }
    .aca-cl-header, .aca-cl-body, .aca-cl-footer { padding-left: 18px; padding-right: 18px; }
    .aca-cl-header h2 { font-size: 17px; }
}
