<style>
   

    .panel {
      background: #fff;
      border-radius: 14px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.08);
      overflow: hidden;
    }

    .toolbarAltimetria {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
      border-bottom: 1px solid #e5e7eb;
      background: #fff;
      position: inherit;
    }

    .toolbarAltimetria .group {
      display: flex;
      gap: 10px;
      align-items: center;
      flex-wrap: wrap;
    }

    .toolbarAltimetria .spacer {
      flex: 1 1 auto;
    }

    .btn, .select {
      height: 40px;
      border-radius: 10px;
      border: 1px solid #d1d5db;
      background: #fff;
      padding: 0 14px;
      font-size: 14px;
    }

    .btn {
      cursor: pointer;
      font-weight: 600;
    }

    .btn-primary {
      background: #2563eb;
      color: #fff;
      border-color: #2563eb;
    }

    .btn:hover { opacity: 0.96; }

    .status {
      font-size: 13px;
      color: #6b7280;
      font-weight: 600;
    }


    .right {
      display: grid;
      grid-template-rows: auto 1fr auto;
      gap: 16px;
      padding: 16px;
    }

    .section-title {
      font-size: 18px;
      font-weight: 700;
      margin: 0 0 12px 0;
    }

    .chart-wrap {
     
      height: 320px;
      border: solid silver 1px;
    }

    .metrics {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-top: 16px;
    }

    .metric {
      border: 1px solid #e5e7eb;
      border-radius: 12px;
      padding: 12px;
      background: #fafafa;
    }

    .metric .label {
      font-size: 12px;
      color: #6b7280;
      margin-bottom: 6px;
    }

    .metric .value {
      font-size: 20px;
      font-weight: 700;
    }

    .note {
      font-size: 13px;
      color: #4b5563;
      line-height: 1.45;
      background: #f9fafb;
      border: 1px solid #e5e7eb;
      border-radius: 12px;
      padding: 12px;
    }

    .legend {
      font-size: 13px;
      color: #6b7280;
      margin-top: 8px;
    }

    .footer-actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .ol-popup {
      background: rgba(17, 24, 39, 0.92);
      color: #fff;
      padding: 8px 10px;
      border-radius: 10px;
      font-size: 12px;
      white-space: nowrap;
      border: 0;
      min-width: 120px;
      text-align: center;
    }

   
  </style>