 .checklist-modal {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.75);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 9999;
      }

      .checklist-modal-content {
        background: #fff;
        padding: 30px;
        width: 100%;
        max-width: 420px;
        border-radius: 10px;
        position: relative;
        animation: popupFade 0.3s ease;
      }

      @keyframes popupFade {
        from { transform: translateY(20px); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
      }

      .checklist-close {
        position: absolute;
        top: 14px;
        right: 18px;
        font-size: 26px;
        cursor: pointer;
      }

      .checklist-form .form-group {
        margin-bottom: 14px;
      }

      .checklist-form input,
      .checklist-form textarea {
        width: 100%;
        padding: 10px 12px;
        border: 1px solid #ccc;
        border-radius: 6px;
        font-size: 14px;
      }

      .submit-btn {
        width: 100%;
        padding: 12px;
        background: #000;
        color: #fff;
        border: none;
        border-radius: 6px;
        font-size: 15px;
        cursor: pointer;
      }

      .submit-btn:hover {
        background: #333;
      }