/* ==========================================================================
   NH 4,000-FOOTERS CHECKLIST SPECIFIC STYLES (nh4klist.css)
   ========================================================================== */

/* Progress Section Adjustments */
.progress-card {
    border: 1px solid rgba(56, 189, 248, 0.25);
    background: #141414;
  }
  
  .progress-fill {
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
  }
  
  /* Checklist Cards Layout */
  .checklist-wrapper {
    width: 100%;
  }
  
  .peak-card-checklist {
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 1.25rem;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  }
  
  .peak-card-checklist.completed {
    border-left: 5px solid #38bdf8;
    border-top-color: rgba(56, 189, 248, 0.2);
    border-right-color: rgba(56, 189, 248, 0.2);
    border-bottom-color: rgba(56, 189, 248, 0.2);
    background: #0f172a;
  }
  
  /* Peak Row Header */
  .peak-row-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }
  
  .checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    cursor: pointer;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
  }
  
  .checkbox-label input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border: 2px solid #38bdf8;
    border-radius: 6px;
    background: transparent;
    cursor: pointer;
    display: grid;
    place-content: center;
    transition: all 0.2s ease;
  }
  
  .checkbox-label input[type="checkbox"]:checked {
    background: #38bdf8;
  }
  
  .checkbox-label input[type="checkbox"]:checked::before {
    content: "✓";
    color: #0d0d0d;
    font-size: 0.9rem;
    font-weight: 800;
  }
  
  .peak-meta-pills {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  
  .elevation-pill {
    color: #d4b886;
    font-weight: 600;
    font-size: 0.9rem;
  }
  
  /* Expandable Detail Panel */
  .peak-detail-panel {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
  }
  
  .peak-detail-panel.hidden {
    display: none;
  }
  
  .detail-inputs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  @media (min-width: 600px) {
    .detail-inputs-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  
  .input-field-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
  }
  
  .input-field-group label {
    font-size: 0.8rem;
    color: #d4b886;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  
  .input-field-group input[type="date"],
  .input-field-group select,
  .input-field-group textarea {
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #f8fafc;
    padding: 0.6rem 0.75rem;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }
  
  .input-field-group input[type="date"]:focus,
  .input-field-group select:focus,
  .input-field-group textarea:focus {
    outline: none;
    border-color: #38bdf8;
    box-shadow: 0 0 6px rgba(56, 189, 248, 0.3);
  }
  
  .input-field-group textarea {
    resize: vertical;
    min-height: 65px;
    line-height: 1.4;
  }
  
  /* Hide Print Template on Screen */
  .print-only-container {
    display: none;
  }
  
  /* ==========================================================================
     STYLIZED PDF / PRINT MEDIA STYLES
     ========================================================================== */
  @media print {
    /* Hide UI Noise */
    body * {
      visibility: hidden;
    }
  
    body {
      background: #ffffff !important;
      color: #111827 !important;
      font-family: 'Inter', sans-serif !important;
      padding: 0 !important;
      margin: 0 !important;
    }
  
    .print-only-container, .print-only-container * {
      visibility: visible;
    }
  
    .print-only-container {
      display: block !important;
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      padding: 20px;
      box-sizing: border-box;
    }
  
    /* Header & Logo */
    .print-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 2px solid #0f172a;
      padding-bottom: 12px;
      margin-bottom: 16px;
    }
  
    .print-logo {
      max-height: 48px;
      width: auto;
    }
  
    .print-title {
      text-align: right;
    }
  
    .print-title h1 {
      font-family: 'Cinzel', serif;
      font-size: 16pt;
      margin: 0;
      color: #0f172a;
    }
  
    .print-title p {
      font-size: 9pt;
      margin: 2px 0 0 0;
      color: #64748b;
    }
  
    /* Summary Box */
    .print-summary-box {
      display: flex;
      justify-content: space-between;
      background: #f8fafc;
      border: 1px solid #e2e8f0;
      padding: 10px 16px;
      border-radius: 6px;
      margin-bottom: 16px;
      font-size: 10pt;
    }
  
    .print-section-heading {
      font-family: 'Cinzel', serif;
      font-size: 12pt;
      color: #0f172a;
      border-bottom: 1px solid #cbd5e1;
      padding-bottom: 4px;
      margin-bottom: 10px;
    }
  
    /* Completed Peak Cards */
    .print-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 10px;
    }
  
    .print-card-completed {
      border: 1px solid #cbd5e1;
      border-left: 4px solid #0284c7;
      padding: 8px 12px;
      border-radius: 4px;
      background: #ffffff;
      page-break-inside: avoid;
    }
  
    .print-card-top {
      display: flex;
      justify-content: space-between;
      font-weight: 700;
      font-size: 10pt;
    }
  
    .print-card-meta {
      display: flex;
      gap: 12px;
      font-size: 8.5pt;
      color: #475569;
      margin-top: 2px;
    }
  
    .print-card-notes {
      font-size: 8.5pt;
      color: #1e293b;
      margin-top: 4px;
      font-style: italic;
      background: #f1f5f9;
      padding: 4px 8px;
      border-radius: 4px;
    }
  
    /* Remaining Peaks Layout */
    .print-simple-list {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 6px;
      font-size: 8.5pt;
      color: #475569;
    }
  
    .print-remaining-item {
      background: #f8fafc;
      border: 1px solid #e2e8f0;
      padding: 4px 8px;
      border-radius: 4px;
    }
  
    .print-footer {
      margin-top: 24px;
      border-top: 1px solid #e2e8f0;
      padding-top: 8px;
      text-align: center;
      font-size: 8pt;
      color: #94a3b8;
    }
  }