/* travelcourse-final.css — styles for the end-of-travel modal template */
  .tf-final-modal { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }

  .tf-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid #eee;
  }
  .tf-logo-col {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .tf-logo-col img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 12px;
  }
  .tf-logo-col:empty { display: none; }

  .tf-title {
    flex: 1;
    text-align: left;
    font-size: 1.45rem;
    font-weight: 700;
    color: #1a1712;
  }

  .tf-map {
    width: 100%;
    height: 280px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    background: #eef0e8;
  }

  .tf-final-text {
    margin-bottom: 22px;
    padding: 16px 18px;
    background: #faf7f0;
    border-left: 3px solid #c8972a;
    border-radius: 8px;
    color: #4a4438;
    font-size: .95rem;
    line-height: 1.6;
  }
  .tf-final-text:empty { display: none; }

  .tf-stage-table { margin-bottom: 8px; }  .tf-stage-row {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f1f1f1;
  }
  .tf-stage-row:last-child { border-bottom: none; }
  .tf-stage-num {
    flex: 0 0 26px;
    height: 26px;
    border-radius: 50%;
    background: #1a1712;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .tf-stage-body { flex: 1; }
  .tf-stage-name {
    font-weight: 700;
    color: #1a1712;
    font-size: .95rem;
    margin-bottom: 2px;
  }
  .tf-stage-sub {
    color: #aaa;
    font-style: italic;
    font-size: .8rem;
    margin-bottom: 4px;
  }
  .tf-stage-resume {
    color: #666;
    font-size: .85rem;
    line-height: 1.55;
  }

  /* marker SVG tanuki */
  .tf-tanuki-marker {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,.35));
  }

  /* marker numéroté : tanuki + pastille numéro de stage */
  .tf-num-marker {
    position: relative;
    width: 44px;
    height: 44px;
  }
  .tf-num-pin {
    width: 44px;
    height: 44px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,.35));
  }
  .tf-num-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 19px;
    height: 19px;
    padding: 0 5px;
    box-sizing: border-box;
    border-radius: 10px;
    background: #c8972a;
    color: #fff;
    border: 2px solid #fff;
    font-family: 'Segoe UI', sans-serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 15px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,.35);
  }

  /* zone + bouton PDF */
  .tf-pdf-zone { text-align: center; }
  .tf-pdf-btn:hover { background: #b3851f !important; }
  .tf-pdf-btn:active { transform: translateY(1px); }

  /* logo en marker de carte (repli) */
  .tf-logo-marker {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,.35);
    background-size: cover;
    background-position: center;
  }
