/**
 * open_page_move_checklist.html — lifted from an inline <style> when the page
 * moved onto the shell. Kept page-specific: this checklist shares no
 * selectors with any other tool page.
 */
.checklist-container {
            max-width: 900px;
            margin: 0 auto;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            overflow: hidden;
        }
        .checklist-header {
            background: linear-gradient(135deg, #0056b3, #007bff);
            color: white;
            padding: 2rem;
            text-align: center;
        }
        .checklist-section {
            border-bottom: 1px solid #e9ecef;
            padding: 1.5rem;
        }
        .checklist-section:last-child {
            border-bottom: none;
        }
        .section-title {
            color: #0056b3;
            font-weight: 600;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .checklist-item {
            display: flex;
            align-items: flex-start;
            padding: 0.75rem 0;
            border-bottom: 1px solid #f8f9fa;
            transition: background-color 0.2s;
        }
        .checklist-item:last-child {
            border-bottom: none;
        }
        .checklist-item:hover {
            background-color: #f8f9fa;
        }
        .item-checkbox {
            margin-right: 1rem;
            margin-top: 0.25rem;
            transform: scale(1.2);
        }
        .item-content {
            flex: 1;
        }
        .item-description {
            font-size: 0.9rem;
            color: #6c757d;
            margin-top: 0.25rem;
        }
        .condition-notes {
            width: 100%;
            margin-top: 0.5rem;
            padding: 0.5rem;
            border: 1px solid #dee2e6;
            border-radius: 5px;
            font-size: 0.9rem;
        }
        .priority-high {
            border-left: 4px solid #dc3545;
            padding-left: 1rem;
        }
        .priority-medium {
            border-left: 4px solid #ffc107;
            padding-left: 1rem;
        }
        .priority-low {
            border-left: 4px solid #28a745;
            padding-left: 1rem;
        }
        .progress-bar-container {
            background: #e9ecef;
            height: 8px;
            border-radius: 4px;
            margin: 1rem 0;
        }
        .progress-bar {
            background: linear-gradient(90deg, #28a745, #20c997);
            height: 100%;
            border-radius: 4px;
            transition: width 0.3s ease;
            width: 0%;
        }
        .action-buttons {
            padding: 2rem;
            background: #f8f9fa;
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        .btn-action {
            padding: 0.75rem 2rem;
            border-radius: var(--lc-radius-btn, 10px);
            font-weight: 600;
            border: none;
            transition: all 0.3s ease;
        }
        .btn-primary-custom {
            background: linear-gradient(135deg, #0056b3, #007bff);
            color: white;
        }
        .btn-primary-custom:hover {
            background: linear-gradient(135deg, #004494, #0056b3);
            transform: translateY(-2px);
            color: white;
        }
        .property-info {
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 1rem;
        }
        .signature-section {
            background: #fff;
            border: 2px solid #0056b3;
            border-radius: 10px;
            padding: 2rem;
            margin-top: 2rem;
        }
        @media print {
            .action-buttons { display: none; }
            .checklist-container { box-shadow: none; }
        }
