 body {
      font-family: sans-serif;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      background: #f3f3f3;
      margin: 0;
    }

    h1 {
      margin-bottom: 10px;
    }

    p {
      text-align: center;
      max-width: 500px;
      margin-bottom: 30px;
    }

    .tab-container {
      display: flex;
      background: #ddd;
      border-radius: 50px;
      padding: 5px;
      margin-bottom: 30px;
    }

    .tab {
      border: none;
      background: transparent;
      padding: 12px 20px;
      margin: 0;
      border-radius: 30px;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .tab.active {
      background-color: black;
      color: white;
    }

    input[type="text"] {
      padding: 12px 20px;
      font-size: 16px;
      width: 320px;
      border: 2px solid #000;
      border-radius: 8px;
      margin-bottom: 20px;
    }

    .search-btn {
      padding: 12px 25px;
      background-color: #111;
      color: white;
      font-weight: bold;
      border: none;
      border-radius: 8px;
      cursor: pointer;
    }