/* CSS for elpris cards */
.elpris-cards-wrapper {
    font-family: system-ui, sans-serif;
  }
  
  .elpris-cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .elpris-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    padding: 16px;
    display: flex;
    align-items: center;
    flex-direction: row;
    min-width: 200px;
    flex: 1 1 200px;
  }
  
  .zone-box {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #1C2549;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    margin-right: 12px;
  }
  
  .card-content .city {
    font-size: 12px;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 0px;
  }
  
  .card-content .spot,
  .card-content .total {
    font-size: 13px;
    font-weight: bold;
  }
  .card-content .spot {
    color: #5d5d5d;
}
  
  @media (max-width: 759px) {
    .elpris-cards {
      gap: 5px;
    }
    .elpris-card {
      flex: 1 1 100%;
      max-width: 100%;
    }
    .zone-box {
        width:68px;
        height:68px;
  }
  .card-content .spot,
  .card-content .total {
    font-size: 16px;
  }
}