body {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.header-section {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  margin: 20px;
  padding: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        } */

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.logo {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Terminal display styles */
.terminal-display {
  position: relative;
  padding: 0 10px;
}
.terminal-underline {
  height: 3px;
  background: linear-gradient(90deg, transparent, #ffc107, transparent);
  margin: 5px auto 0;
  width: 80%;
  animation: terminalGlow 2s infinite alternate;
  border-radius: 3px;
}
@keyframes terminalGlow {
  0% {
    opacity: 0.7;
    width: 60%;
  }
  100% {
    opacity: 1;
    width: 80%;
  }
}
.animate__animated {
  animation-duration: 1s;
}
.animate__fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.main-content {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  margin: 20px;
  padding: 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.selection-container {
  background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 30px;
  border: 2px solid rgba(103, 126, 234, 0.2);
}

.form-select {
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: white;
}

.form-select:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.destination-viewer {
  height: 600px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border: 3px solid rgba(255, 255, 255, 0.8);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.destination-iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

.info-panel {
  background: linear-gradient(135deg, #fff3e0, #fce4ec);
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
  border-left: 5px solid #ff6b35;
}

.station-info {
  background: white;
  border-radius: 8px;
  padding: 15px;
  margin: 10px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #667eea;
}

.btn-modern {
  background: linear-gradient(135deg, #667eea, #764ba2);
  border: none;
  border-radius: 25px;
  padding: 12px 25px;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  color: white;
}
 #voiceSearchBtn{
                margin-top: -78px;
                margin-left: 600px;
                border-radius: 50%;
        
            }

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  width: 300px;
  margin: 20% auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.modal-content button {
  background-color: #6c3483;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.stat-card {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.selection-container .form-label {
  display: flex;
  align-items: center;
  gap: 6px;
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.welcome-message {
  text-align: center;
  color: #666;
  font-size: 1.2rem;
  margin-top: 100px;
}

.welcome-icon {
  font-size: 4rem;
  color: #667eea;
  margin-bottom: 20px;
}

.error-message {
  text-align: center;
  color: #dc3545;
  font-size: 1.1rem;
  margin-top: 50px;
}

.error-icon {
  font-size: 3rem;
  color: #dc3545;
  margin-bottom: 15px;
}

.route-breadcrumb {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
  border-left: 4px solid #667eea;
}

.route-arrow {
  color: #667eea;
  font-size: 1.2rem;
  margin: 0 15px;
}

.key-legends-section .border {
  transition: transform 0.2s;
}
.key-legends-section .border:hover {
  transform: scale(1.03);
  background-color: #f8f9fa;
}

.custom-btn {
  margin-top: 120px;
  margin-right: 40px;
  padding: 0px 10px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .header-section,
  .main-content {
    margin: 10px;
    padding: 15px;
  }

  .destination-viewer {
    height: 400px;
  }
  .container-title {
    display: flex;
    flex-direction: row;
  }
  #voiceSearchBtn{
                margin-top: 10px;
                margin-left: 100px;
                border-radius: 50%;
        
            }
            
  .logo {
    width: 60px;
    height: 60px;
    font-size: 10px;
  }
  .custom-btn {
    margin-top: 172px;
    margin-right: 240px;
  }
  .header-section {
    padding-bottom: 1rem;
  }
}
