  .line-diagram {
      flex: 1;
      padding: 30px 20px;
      transition-duration: 800ms;
      background-color: #fff;
      border-radius: 25px;
      box-shadow: 3px 0 15px -1px rgba(0, 0, 0, 0.15);
  }

  .line-content-wrapper {
      display: flex;
      gap: 20px;
      margin-bottom: 40px;
  }

  .line-description {
      flex: 1;
      padding: 30px 20px;
      transition-duration: 800ms;
      background-color: #fff;
      border-radius: 25px;
      box-shadow: 3px 0 15px -1px rgba(0, 0, 0, 0.15);
      margin-bottom: 40px;
      height: fit-content;
  }

  .line-description h3 {
      margin-top: 0;
      margin-bottom: 16px;
      color: #000;
      font-size: 16px;
      font-weight: 600;
  }

  .line-description p {
      margin: 0 0 12px 0;
      font-size: 14px;
      line-height: 1.6;
      color: #000;
  }

  .line-description ul {
      margin: 12px 0;
      padding-left: 20px;
      list-style: disc;
  }

  .line-description li {
      font-size: 14px;
      line-height: 1.6;
      color: #000;
      margin-bottom: 8px;
  }

  .logo-operator {
      width: 100px;
      margin-top: 10px;
  }

  .about-me-stations {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      max-width: 100%;
  }

  .details-section {
      padding-left: 4em;
      padding-right: 4em;
  }

  body.dark-mode .line-description {
      flex: 1;
      padding: 30px 20px;
      background: #3d4556;
      border-radius: 12px;
      margin-bottom: 40px;
      height: fit-content;
  }

  body.dark-mode .line-description h3 {
      color: #fff;
  }

  body.dark-mode .line-description p {
      color: #fff;
  }

  body.dark-mode .line-description li {
      color: #ccc;
  }

  body.dark-mode .line-diagram {
      transition: all 0.5s ease;
      background-color: #1c1f2b;
      border: 1px solid #2b2b2b33;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.233), 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  body.dark-mode .line-description {
      transition: all 0.5s ease;
      background-color: #1c1f2b;
      border: 1px solid #2b2b2b33;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.233), 0 4px 12px rgba(0, 0, 0, 0.1);
  }


  body.dark-mode .port-summary {
      color: #fff;
      transition: all 0.5s ease;
      background-color: #1c1f2b;
      border: 1px solid #2b2b2b33;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.233), 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  /* Table styling from fleet-table */
  .info-table {
      overflow: hidden;
      font-size: clamp(0.75rem, 1.5vw, 0.9rem);
      width: 100%;
      table-layout: auto;
  }

  .info-table th {
      text-align: center;
      border: 2px solid #d6d6d6;
      padding: clamp(0.4rem, 1.5vw, 0.8rem);
      white-space: nowrap;
  }

  .info-table td {
      padding: clamp(0.3rem, 1vw, 0.6rem);
      word-wrap: break-word;
      overflow-wrap: break-word;
  }

  .info-table .first,
  .info-table .second {
      font-weight: bold;
      text-align: center;
      vertical-align: top;
  }

  .info-table tbody tr:nth-child(odd) {
      background-color: #dfdfdf !important;
      border: 2px solid #d6d6d6;
  }

  .info-table tbody tr:nth-child(odd) td {
      background-color: #dfdfdf !important;
      border: 2px solid #bebebe;
  }

  .info-table tbody tr:nth-child(even) {
      background-color: #fff !important;
      border: 2px solid #d6d6d6;
  }

  .info-table tbody tr:nth-child(even) td {
      background-color: #fff !important;
      border: 2px solid #bebebe;
  }

  body.dark-mode .info-table {
      border: 1px solid #2b2b2b33;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.233), 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  body.dark-mode .info-table th {
      background-color: #393e53;
      border: 2px solid #303444;
      color: #fff;
  }

  body.dark-mode .info-table .first,
  body.dark-mode .info-table .second {
      background-color: #1c1f2b;
      border: 2px solid #393e53;
      color: #fff;
  }

  body.dark-mode .info-table tbody tr:nth-child(odd) {
      background-color: #212430 !important;
      border: 2px solid #d6d6d6;
  }

  body.dark-mode .info-table tbody tr:nth-child(odd) td {
      background-color: #212430 !important;
  }

  body.dark-mode .info-table tbody tr:nth-child(even) {
      background-color: #30354b !important;
      border: 2px solid #242526;
  }

  body.dark-mode .info-table tbody tr:nth-child(even) td {
      background-color: #30354b !important;
  }

  /* Responsive design */
  @media (max-width: 768px) {
      .line-content-wrapper {
          flex-direction: column;
          gap: 0;
      }

      .line-diagram {
          max-width: 100%;
          padding: 20px 15px;
          border-radius: 15px;
      }

      .line-description {
          max-width: 100%;
          padding: 20px 15px;
          border-radius: 15px;
      }

      .details-section {
          padding-left: 1rem;
          padding-right: 1rem;
      }

      .about-me-stations {
          overflow-x: auto;
          -webkit-overflow-scrolling: touch;
          margin: 0;
          padding: 0;
      }

      .info-table {
          font-size: 13px;
          width: 100%;
          min-width: auto;
          margin: 0;
      }

      .info-table th,
      .info-table td {
          padding: 0.4rem 0.25rem;
          word-wrap: break-word;
          overflow-wrap: break-word;
          font-size: 12px;
      }

      .info-table th {
          padding: 0.5rem 0.25rem;
          font-size: 13px;
      }

      .info-table .first,
      .info-table .second {
          font-size: 12px;
      }

      .row.justify-content-center {
          margin-right: 0;
          margin-left: 0;
          width: 100%;
      }

      .about-me-stations>.row {
          margin: 0;
          width: 100%;
      }

      .about-me-stations .table-responsive {
          margin: 0;
          padding: 0;
          border-radius: 0;
      }

      .about-me-stations.text-center {
          text-align: left;
      }

      .about-me-stations table {
          margin-bottom: 0;
      }

      #ops-smrtt,
      #ops-smrtb {
          width: 142px;
          height: auto;
      }
  }