* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: Arial, sans-serif;
      background-color: #f5f5f5;
      padding: 20px;
    }
    
    .container {
      max-width: 900px;
      margin: 0 auto;
      background-color: white;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    h1 {
      margin-bottom: 30px;
      color: #333;
    }
    
    .search-box {
      position: relative;
      margin-bottom: 30px;
    }
    
    .search-input-group {
      display: flex;
      gap: 10px;
    }
    
    input[type="text"] {
      flex: 1;
      padding: 10px;
      border: 1px solid #ddd;
      border-radius: 4px;
      font-size: 16px;
    }
    
    input[type="text"]:focus {
      outline: none;
      border-color: #007bff;
      box-shadow: 0 0 5px rgba(0,123,255,0.5);
    }
    
    button {
      padding: 10px 20px;
      background-color: #007bff;
      color: white;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      font-size: 16px;
    }
    
    button:hover {
      background-color: #0056b3;
    }
    
    .suggestions {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: white;
      border: 1px solid #ddd;
      border-top: none;
      max-height: 200px;
      overflow-y: auto;
      display: none;
      z-index: 100;
    }
    
    .suggestions.show {
      display: block;
    }
    
    .suggestion-item {
      padding: 10px;
      cursor: pointer;
      border-bottom: 1px solid #eee;
    }
    
    .suggestion-item:hover {
      background-color: #f0f0f0;
    }
    
    .suggestion-item:last-child {
      border-bottom: none;
    }
    
    .bus-details {
      margin-top: 30px;
      display: none;
    }
    
    .bus-details.show {
      display: block;
    }
    
    .bus-details {
      background-color: #f9f9f9;
      padding: 20px;
      border-left: 4px solid #007bff;
      margin-bottom: 30px;
      border-radius: 4px;
    }
    
    .detail-row {
      display: grid;
      grid-template-columns: 150px 1fr;
      margin-bottom: 12px;
      padding-bottom: 12px;
      border-bottom: 1px solid #eee;
    }
    
    .detail-row:last-child {
      border-bottom: none;
    }
    
    .detail-label {
      font-weight: bold;
      color: #555;
    }
    
    .detail-value {
      color: #333;
      word-break: break-all;
    }
    
    .yt-link {
      color: #007bff;
      text-decoration: none;
    }
    
    .yt-link:hover {
      text-decoration: underline;
    }
    
    h3 {
      margin-top: 20px;
      margin-bottom: 15px;
      color: #333;
    }
    
    table {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 20px;
    }
    
    th, td {
      border: 1px solid #ddd;
      padding: 12px;
      text-align: left;
    }
    
    th {
      background-color: #f2f2f2;
      font-weight: bold;
    }
    
    tr:nth-child(even) {
      background-color: #f9f9f9;
    }
    
    .error {
      color: #d32f2f;
      margin-top: 10px;
      padding: 10px;
      background-color: #ffebee;
      border-radius: 4px;
      display: none;
    }
    
    .error.show {
      display: block;
    }
    
    .no-data {
      padding: 20px;
      text-align: center;
      color: #999;
      background-color: #f5f5f5;
      border-radius: 4px;
    }
    
    .toggle-buttons {
      margin-bottom: 20px;
    }
    .toggle-buttons button {
      padding: 10px 20px;
      margin-right: 10px;
      border: 1px solid #007bff;
      background: #fff;
      color: #007bff;
      cursor: pointer;
      border-radius: 4px;
      font-size: 16px;
    }
    .toggle-buttons button.active {
      background: #007bff;
      color: #fff;
    }