body {
      background-color: #1a202c;
      color: #f7fafc;
      font-family: 'Segoe UI', sans-serif;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
    }

    .audit-box {
      background-color: #2d3748;
      padding: 2rem;
      border-radius: 1rem;
      width: 100%;
      max-width: 500px;
      box-shadow: 0 0 20px rgba(0,0,0,0.4);
    }

    .audit-box h1 {
      text-align: center;
      margin-bottom: 1.5rem;
      font-size: 1.75rem;
      color: #63b3ed;
    }

    .search-field {
      position: relative;
      display: flex;
    }

    .search-field input {
      width: 100%;
      padding: 1rem 1rem 1rem 3rem;
      font-size: 1rem;
      border-radius: 0.75rem;
      border: none;
      outline: none;
      background-color: #4a5568;
      color: #f7fafc;
      transition: 0.3s ease;
    }

    .search-field input:focus {
      box-shadow: 0 0 10px #4299e1;
      background-color: #2c5282;
    }

    .search-field i {
      position: absolute;
      top: 50%;
      left: 1rem;
      transform: translateY(-50%);
      color: #a0aec0;
    }

    .audit-box button {
      margin-top: 1rem;
      width: 100%;
      padding: 0.75rem;
      font-size: 1rem;
      background-color: #38a169;
      color: white;
      border: none;
      border-radius: 0.75rem;
      cursor: pointer;
      transition: 0.3s;
    }

    .audit-box button:hover {
      background-color: #2f855a;
    }

    .error {
      margin-top: 1rem;
      color: #f56565;
      text-align: center;
    }
 