/* Legacy Page Styles */

.checklist-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    cursor: pointer;
    transition: background 0.2s;
}

.checklist-row:last-child {
    border-bottom: none;
}

.checklist-row:hover {
    background: rgba(245, 178, 26, 0.04);
    border-radius: 8px;
    padding-left: 8px;
}

.checklist-status-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.checklist-status-icon.completed {
    background: rgba(34, 197, 94, 0.2);
    color: #22C55E;
}

.checklist-status-icon.in_progress {
    background: rgba(245, 158, 11, 0.2);
    color: #F59E0B;
}

.checklist-status-icon.not_started {
    background: rgba(174, 184, 196, 0.2);
    color: #AEB8C4;
}

.doc-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.doc-row:last-child {
    border-bottom: none;
}

.doc-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(239, 68, 68, 0.15);
    color: #EF4444;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Mobile first adjustments */
@media (max-width: 768px) {
    .checklist-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}
