
    body {
      margin: 0;
      font-family: 'Noto Sans JP', sans-serif;
    }
    .top-padding{
      padding-top:0px;
    }
    .l-main {
      display: flex;
      flex-direction: column;
    }
    .image-container {
      width: 100%;
      text-align: center;
    }
    .filter-and-table-container {
      display: flex;
      width: 100%;
      padding-top: 10px;
    }
    .filter-container {
      width: 15%;
      padding: 10px;
      /*border-right: 1px solid #ccc;
      background-color: #f9f9f9;*/
      box-sizing: border-box;
      overflow-y: auto;
      flex-shrink: 0;
    }
    .filter-item {
      margin-bottom: 1px;
    }
    .filter-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      user-select: none;
      padding: 5px;
      border: 1px solid white;
      background-color: #ECF2F4;
    }
    .filter-title {
      font-weight: bold;
      font-size: 0.6em;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .toggle-button {
      padding: 0 5px;
      font-size: 0.6em;
    }
    .filter-content {
      display: none;
      padding: 10px;
      border: 1px solid white;
      border-top: none;
      background-color: #ECF2F4;
      font-size: 0.6em;
    }

    .filter-item.active .filter-content {
      display: block;
    }
    label {
      display: block;
      margin-bottom: 5px;
      font-weight: bold;
    }
    input[type="number"],
    input[type="range"] {
      width: 100%;
      box-sizing: border-box;
      margin-bottom: 5px;
    }
    .range-values {
      display: flex;
      justify-content: space-between;
      font-size: 0.8em;
      color: #000000;
    }

    .checkbox-group label {
      /*display: inline-block;*/
      display: block;
      font-weight: normal;
      margin-right: 10px;
      width: 100%;
      box-sizing: border-box;
      white-space: normal;
      word-break: break-word;
    }
    .table-container { /* Added container for table to enable scrolling */
      flex-grow: 1;
      overflow-x: auto; /* Add horizontal scroll */
      margin-left: 20px;
      margin-right: 20px;
      height: max-content;
    }
    .product-table {
      border-collapse: collapse;
      width: 100%; /* Make table take full width of its container */
      min-width: 800px; /* Set a minimum width to prevent shrinking */
      font-size: 0.6em;
      text-align: center;
      margin-top: 10px;
    }
    .product-table thead {
      background-color: #C2D4DB;
    }
    .product-table thead th {
    border-left: 0.5px solid #D9D9D9;
    border-right: 0.5px solid #D9D9D9;
    border-top: none;
    border-bottom: none;
    font-weight: normal;
    padding-top: 1px;
    padding-bottom: 2px;
    }
    .product-table thead tr th{
      text-align: center;
    }
    .product-table tbody td  {
      border: 0.5px solid #D9D9D9;
      padding: 4px;
    }
    .product-table tbody tr  {
      text-align: center;
    }
    .product-table tbody tr td {
      text-align: center;
    }

    .filter-badge-container {
      margin-bottom: 10px;
      margin-top: 0px; /* Modified this line */
      width: 100%; /* Added this line */
      padding-left: 20px;
      box-sizing: border-box;
      font-size: 0.6em;
    }
    .filter-badge {
      display: inline-block;
      padding: 5px 10px;
      background-color: white;
      border: 1px solid #ccc;
      border-radius: 5px;
      margin-right: 5px;
      font-size: 0.9em;
    }
    .filter-badge .remove-filter {
      cursor: pointer;
      margin-right: 5px;

      color: black;
      font-weight: bold;
    }
    .clear-filters-button {
      display: block;
      margin-top: 10px;
      margin-left: auto;
      margin-bottom: 10px;
      padding: 8px 15px;
      background-color: white;
      border: 1px solid #ccc;
      border-radius: 5px;
      cursor: pointer;
      font-size: 0.6em;
    }

    /* ダブルスライダーのスタイル */
    .range-slider {
      position: relative;
      height: 25px;
      background-color: #ECF2F4;
      border:none;
      border-radius: 5px;
      margin-bottom: 10px;
    }

    .range-slider .slider {
      position: absolute;
      top: -2px;
      z-index: 1;
      height: 30px;
      background-color: #C2D4DB;
      border-radius: 50%;
      cursor: pointer;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 0.8em;
    }

    .range-slider .slider::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 15px;
      height: 15px;
      background-color:#6793A5;
      border-radius: 50%;
    }

    .range-slider .range {
      position: absolute;
      z-index: 0;
      left: 0;
      right: 0;
      top: 50%;
      height: 5px;
      background-color: #BFBFBF;
      transform: translateY(-50%);
      border-radius: 5px;
    }

    .range-slider .range-fill {
      position: absolute;
      z-index: 1;
      left: 0;
      right: 0;
      top: 50%;
      height: 5px;
      background-color: #6793A5;
      transform: translateY(-50%);
      border-radius: 5px;
    }

    .voltage-min-max-inputs {
      display: flex;
      justify-content: space-between;
      border-color: #89ABB9;
    }

    .voltage-min-max-inputs input[type="number"] {
      width: 48%;
    }
    #voltageMinEnd {
      text-align: right;
    }

    #voltageMaxEnd {
      text-align: right;
    }
    #avgCurrentEnd {
      text-align: right;
    }
    #distanceMinEnd{
      text-align: right;
    }
    #distanceMaxEnd{
      text-align: right;
    }

    .range-values-container {
    position: relative;
  }

  .auxiliary-lines {
    position: absolute;
    top: -10px;
    width: 100%;
    height: 10px;
    pointer-events: none;
  }

  .line {
    position: absolute;
    width: 1px;
    height: 100%;
    background-color: #000;
  }

  .active-button {
    background-color: #d0d0d0;
    transform: scale(0.95);
    transition: background-color 0.2s, transform 0.2s;
  }

  input[type="checkbox"] {
    accent-color: #6793A5;
    border: 2px solid #6793A5;
    cursor: pointer;
    }

  input[type="checkbox"]:checked::before {
    color: white;
    border-color:#6793A5;
  }

  input[type="checkbox"]:checked::after {
    background-color:#6793A5;
    border-color:#6793A5;
    color: white;
  }
  .center-value {
        text-align: center;

  }
  .no-results-message {
    text-align: center;
    font-size: 1.2em;
    margin-top: 20px;
    color: #555;
  }
 
  @media only screen and (max-width: 640px) {
    .filter-container {
      width: 30%!important;
  }
}