body {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    font-family: 'Orbitron', sans-serif;
    color: #e0e0e0;
    transition: background 0.5s, color 0.5s;
  }
  .bot-dashboard {
    max-width: 950px;
  }
  .bot-title {
    font-size: 3rem;
    text-shadow: 0 0 10px #00f2ff, 0 0 20px #00f2ff;
    font-weight: bold;
  }
  .alert-message {
    font-size: 1rem;
    text-align: center;
    margin: 15px 0;
    padding: 10px;
    border-radius: 10px;
    background: rgba(255, 204, 0, 0.1);
    border: 1px solid #ffcc00;
    color: #ffcc00;
  }
  .highlight {
    color: #00f2ff;
    font-weight: bold;
  }
  .card {
    background: rgba(25, 25, 45, 0.85);
    border-radius: 15px;
    border: 1px solid #00f2ff44;
    box-shadow: 0 0 20px #00f2ff22;
    backdrop-filter: blur(6px);
  }
  button.btn {
    border-radius: 12px;
    font-weight: bold;
    transition: 0.3s;
  }

  .evm-chains {
  margin-top: 30px;
}
.chains-title {
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-shadow: 0 0 8px #00f2ff;
}
.chains-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-items: center;
}
.chain-card {
  background: rgba(25, 25, 45, 0.85);
  border-radius: 15px;
  padding: 15px;
  width: 120px;
  transition: 0.3s;
  border: 1px solid #00f2ff44;
  box-shadow: 0 0 12px #00f2ff22;
}
.chain-card img {
  width: 50px;
  margin-bottom: 10px;
}
.chain-card p {
  margin: 0;
  font-weight: bold;
  color: #e0e0e0;
}
.chain-card:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px #00f2ff99;
}

.selected-chain {
    border-color: #f39c12; 
    box-shadow: 0px 0px 12px rgba(243, 156, 18, 0.8);
    background: rgba(243, 156, 18, 0.1);
  }

   .guidelines {
    background: rgba(25, 25, 45, 0.85);
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  .steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
  }

  .step-number {
    width: 35px;
    height: 35px;
    background: #f39c12;
    color: #fff;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  }

  .step-content h5 {
    margin: 0 0 5px;
    font-size: 18px;
    color: #fff;
  }

  .step-content p {
    margin: 0;
    font-size: 14px;
    color: #7e7878;
  }

  /* Toast Notification Styles */
#toast {
  visibility: hidden;
  min-width: 250px;
  background: rgba(25, 25, 45, 0.85);
  color: #fff;
  text-align: center;
  border-radius: 20px;
  padding: 16px 20px;
  position: fixed;
  z-index: 9999;
  top: 30px;
  right: 30px; /* ✅ always stick to right side */
  font-size: 17px;
  opacity: 0;
  transition: opacity 0.5s, visibility 0.5s, transform 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transform: translateY(-10px); /* start slightly above */
}

/* When toast is shown */
#toast.show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0); /* smooth drop animation */
}

 
@media (max-width: 768px) {
  .chains-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

  .btn-primary { background: #00f2ff; color: #0f2027; }
  .btn-success { background: #00e676; color: #0f2027; }
  .btn-info { background: #2979ff; color: #fff; }
  .btn-warning { background: #ffd600; color: #0f2027; }
  .btn-danger { background: #ff1744; color: #fff; }
  .btn-toggle { background: #2c3e50; color: #00f2ff; }
  .btn:hover { transform: scale(1.05); box-shadow: 0 0 10px #00f2ff88; }
  input.form-control {
    border-radius: 10px;
    border: 1px solid #00f2ff55;
    background: #101522;
    color: #e0e0e0;
    padding: 12px;
  }
  table { font-size: 0.9rem; }
  table.table-striped tbody tr:nth-of-type(odd) { background: #1e2a38; }
  table.table-striped tbody tr:hover { background: #28394a; }


