body {
  font-family: "Inter", sans-serif;
  background-color: #0d1b2a;
  color: #e0e1dd;
}
.main-container {
  background-color: #1b263b;
  border: 1px solid #415a77;
}
.card {
  background-color: #0d1b2a;
  border: 1px solid #415a77;
  border-radius: 0.5rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}
.input-field,
.select-field {
  background-color: #1b263b;
  border: 1px solid #415a77;
  color: #e0e1dd;
  border-radius: 0.375rem;
  padding: 0.5rem 0.75rem;
  width: 100%;
}
.input-field:focus,
.select-field:focus {
  outline: none;
  border-color: #00a9ff;
  box-shadow: 0 0 0 2px rgba(0, 169, 255, 0.5);
}
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
  border: none;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-primary {
  background-color: #00a9ff;
  color: #0d1b2a;
}
.btn-primary:hover:not(:disabled) {
  background-color: #0087cc;
}
.btn-secondary {
  background-color: transparent;
  color: #00a9ff;
  border: 1px solid #00a9ff;
}
.btn-secondary:hover:not(:disabled) {
  background-color: rgba(0, 169, 255, 0.1);
}
.progress-bar-container {
  background-color: #1b263b;
  border-radius: 9999px;
  height: 1.25rem;
  overflow: hidden;
  border: 1px solid #415a77;
}
.progress-bar-fill {
  background: linear-gradient(90deg, #00a9ff, #38b6ff);
  height: 100%;
  border-radius: 9999px;
  transition: width 0.5s ease-in-out;
}
.status-indicator {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #2ecc71;
  box-shadow: 0 0 15px #2ecc71, 0 0 25px #2ecc71;
  animation: pulse 2s infinite;
}
.status-indicator.stopped {
  background-color: #e74c3c;
  box-shadow: none;
  animation: none;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 10px #2ecc71, 0 0 15px #2ecc71;
  }
  50% {
    box-shadow: 0 0 20px #2ecc71, 0 0 30px #2ecc71;
  }
  100% {
    box-shadow: 0 0 10px #2ecc71, 0 0 15px #2ecc71;
  }
}
.form-label {
  color: #a9b4c2;
  font-size: 0.875rem;
}
.card-title {
  color: #e0e1dd;
  font-weight: 600;
  font-size: 1.125rem;
  border-bottom: 1px solid #415a77;
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
  text-align: center;
}
/* Mobile Navbar Styles */
.mobile-nav {
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
}
.nav-item {
  transition: all 0.2s ease-in-out;
  color: #a9b4c2;
}
.nav-item.active {
  color: #00a9ff;
  transform: scale(1.1);
}
/* Notification Styles */
.notification {
  transition: all 0.5s ease-in-out;
  opacity: 0;
  transform: translateX(100%);
}
.notification.show {
  opacity: 1;
  transform: translateX(0);
}
