#customAlertOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

#customAlertBox {
  background: #fff;
  padding: 20px 30px;
  border-radius: 10px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

#customAlertBox h2 {
  margin-top: 0;
  font-size: 20px;
  color: #333;
}

#customAlertBox p {
  margin: 15px 0;
  color: #555;
}

#customAlertBox button {
  padding: 10px 20px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#customAlertBox button:hover {
  background: #0056b3;
}

  .search-bar {
      text-align: center;
      margin: 20px;
    }

    .search-bar input {
      padding: 10px;
      width: 80%;
      max-width: 400px;
      font-size: 16px;
      border: 1px solid #ccc;
      border-radius: 8px;
    }
.top-bar {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background: #ffffffcc;
  padding: 10px 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  backdrop-filter: blur(4px);
}
      * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Poppins', sans-serif;
    }

    body {
      background: linear-gradient(to right, #ffffff, #000000);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: top;
      height: 100vh;
      color: white;
    }

    .card {
  width: 340px;
  height: 200px;
  background: linear-gradient(135deg, #000000, #ffffff);
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  position: relative;
}

.card .logo {
  font-size: 24px;
  font-weight: 600;
}

.card .number {
  font-size: 20px;
  letter-spacing: 2px;
  margin: 10px 0;
}

.card .details {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  gap: 4px;
  flex-grow: 1;
  position: relative;
}

.card .balance {
  position: absolute;
  bottom: 5px;
  right: 5px;
  font-size: 14px;
}

    .buttons {
      margin-top: 40px;
      display: flex;
      gap: 20px;
    }

    .btn {
      flex: 1;
      padding: 12px;
      background-color: #6a11cb;
      border: none;
      border-radius: 15px;
      color: white;
      font-size: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .btn:hover {
      background-color: #8a2be2;
      transform: scale(1.05);
    }

    .btn i {
      font-size: 16px;
    }