/* Container */
.elpris-wrapper {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    max-width: 900px;
    margin: 40px auto;
    font-family: system-ui, sans-serif;
}
.elpris-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.elpris-legend {
    margin-top: 20px;
    font-size: 0.9em;
}
.elpris-legend .legend-box {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 6px;
    vertical-align: middle;
    border-radius: 2px;
}
.elpris-disclaimer {
    font-size: 0.85em;
    color: #666;
    margin-top: 20px;
}

/* Overskrift */
.elpris-wrapper h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #222;
}

/* Info-tekst */
.elpris-wrapper p {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #444;
}

/* Fremhæv tal */
.elpris-wrapper strong {
    color: #000;
}

/* Canvas: graf */
#elprisChart {
    width: 100% !important;
    height: 350px !important;
}
.elpris-top-horizontal {
    display: flex;
    gap: 20px;
    font-size: 0.95em;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.elpris-top-horizontal div {
    white-space: nowrap;
}
@media (max-width: 787px) {
    .elpris-wrapper canvas {
      height: 800px !important;
    }
  
    .elpris-slider-wrapper {
      flex-direction: column;
      align-items: center;
    }
  
    .elpris-toggle,
    .elpris-type-toggle {
      width: 100%;
      justify-content: center;
      margin-bottom: 10px;
    }
  
    .elpris-toggle button,
    .elpris-type-toggle button {
      flex: 1;
      text-align: center;
    }
  
    .elpris-top-horizontal {
      flex-direction: column !important;
      gap: 5px !important;
    }
  
    .elpris-bottom {
      flex-direction: column;
      text-align: center;
      gap: 10px;
    }
  }
  