
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
      background-color: #f9fafb;
      color: #1f2937;
      line-height: 1.6;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      background: white;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    .header {
      background: white;
      border-bottom: 1px solid #e5e7eb;
      padding: 2rem;
      text-align: center;
    }

    .header h1 {
      font-size: 2rem;
      font-weight: 600;
      color: #1f2937;
      margin-bottom: 0.5rem;
    }

    .header p {
      color: #6b7280;
      font-size: 1rem;
    }

    .search-section {
      padding: 2rem;
      border-bottom: 1px solid #e5e7eb;
    }

    .search-container {
      display: flex;
      gap: 1rem;
      max-width: 600px;
      margin: 0 auto;
    }

    .search-input {
      flex: 1;
      padding: 0.75rem 1rem;
      border: 1px solid #d1d5db;
      border-radius: 0.5rem;
      font-size: 1rem;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
      outline: none;
      background: white;
    }

    .search-input:focus {
      border-color: #3b82f6;
      box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    }

    .search-btn {
      padding: 0.75rem 1.5rem;
      background: #1f2937;
      color: white;
      border: none;
      border-radius: 0.5rem;
      font-size: 1rem;
      font-weight: 500;
      cursor: pointer;
      transition: background-color 0.2s ease;
      white-space: nowrap;
    }

    .search-btn:hover {
      background: #111827;
    }

    .add-transport-btn {
      padding: 0.75rem 1.5rem;
      background: #10b981;
      color: white;
      border: none;
      border-radius: 0.5rem;
      font-size: 1rem;
      font-weight: 500;
      cursor: pointer;
      transition: background-color 0.2s ease;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      white-space: nowrap;
    }

    .add-transport-btn:hover {
      background: #059669;
    }

    .results-section {
      padding: 2rem;
      flex: 1;
    }

    .results-header {
      display: flex;
      justify-content: space-between;

      align-items: center;
      flex-wrap: wrap;
      margin-bottom: 1.5rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid #e5e7eb;
    }

    .results-count {
      color: #6b7280;
      font-size: 0.95rem;
    }

    .clear-btn {
      padding: 0.5rem 1rem;
      background: transparent;
      color: #6b7280;
      border: 1px solid #d1d5db;
      border-radius: 0.375rem;
      font-size: 0.875rem;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .clear-btn:hover {
      background: #f3f4f6;
      color: #374151;
    }

    .table-container {
      border: 1px solid #e5e7eb;
      border-radius: 0.5rem;

      max-height: 70vh;
      overflow: auto;
    }

    .results-table {
      width: 100%;
      border-collapse: collapse;
      background: white;
    }

    .results-table th {
      background: #f9fafb;
      color: #374151;
      padding: 1rem;
      text-align: left;
      font-weight: 800;
      font-size: 0.875rem;
      text-wrap: nowrap;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      border-bottom: 1px solid #e5e7eb;
      position: sticky;
      top: 0;
      z-index: 10;
    }

    .results-table td {
      padding: 1rem;
      border-bottom: 1px solid #f3f4f6;
      vertical-align: top;

    }

    .results-table tbody tr:hover {
      background: #f9fafb;
    }

    .results-table tbody tr:last-child td {
      border-bottom: none;
    }

    .place-cell {
      font-weight: 600;
      color: #1f2937;
    }

    .transport-cell {
      color: #4b5563;
    }

    .contacts-cell {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .contact-link {
      display: inline-block;
      padding: 0.5rem 1rem;
      background: #10b981;
      color: white;
      text-decoration: none;
      border-radius: 0.375rem;
      font-size: 0.875rem;
      font-weight: 500;
      text-align: center;
      transition: background-color 0.2s ease;
    }

    .contact-link:hover {
      background: #059669;
    }

    .location-link {
      display: inline-block;
      padding: 0.5rem 1rem;
      background: #3b82f6;
      text-wrap: nowrap;
      color: white;
      text-decoration: none;
      border-radius: 0.375rem;
      font-size: 0.875rem;
      font-weight: 500;
      text-align: center;
      transition: background-color 0.2s ease;
    }

    .location-link:hover {
      background: #2563eb;
    }

    .no-results {
      text-align: center;
      padding: 4rem 2rem;
      color: #6b7280;
    }

    .no-results-icon {
      font-size: 3rem;
      margin-bottom: 1rem;
      opacity: 0.5;
    }

    .no-results h3 {
      font-size: 1.25rem;
      margin-bottom: 0.5rem;
      color: #374151;
    }

    .footer {
      background: #f9fafb;
      color: #6b7280;
      padding: 1.5rem;
      text-align: center;
      border-top: 1px solid #e5e7eb;
      margin-top: auto;
      font-size: 0.875rem;
    }

    .search-input:disabled,
    .search-btn:disabled {
      opacity: 0.6;
      cursor: not-allowed;
    }

    .scroll-hint {
      text-align: center;
      color: #9ca3af;
      font-size: 0.875rem;
      margin-top: 1rem;
      display: none;
    }

    /* Mobile Responsive Styles */
    @media (max-width: 768px) {
      .header {
        padding: 1.5rem 1rem;
      }

      .header h1 {
        font-size: 1.75rem;
      }

      .search-section {
        padding: 1.5rem 1rem;
      }

      .search-container {
        flex-direction: column;
        max-width: none;
      }

      .results-section {
        padding: 2rem;
      }



      .clear-btn {
        align-self: flex-end;
        width: fit-content;
      }



      .results-table th,
      .results-table td {
        padding: 0.75rem 0.5rem;
      }

      .contacts-cell {
        gap: 0.375rem;
      }

      .contact-link,
      .location-link {
        padding: 0.375rem 0.75rem;

      }

      .scroll-hint {
        display: block;
      }

      .no-results {
        padding: 3rem 1rem;
      }
    }

    @media (max-width: 480px) {
      .header {
        padding: 1rem;
      }

      .header h1 {
        font-size: 1.5rem;
      }

      .search-section {
        padding: 1rem;
      }

      .results-section {
        padding: 0.75rem;
      }

      .results-table th,
      .results-table td {
        padding: 0.5rem 0.375rem;

      }

      .footer {
        padding: 1rem;
      }
    }
