/* These styles are generated from project.scss. */

.alert-debug {
  color: black;
  background-color: white;
  border-color: #d6e9c6;
}

.alert-error {
  color: #b94a48;
  background-color: #f2dede;
  border-color: #eed3d7;
}

/* Authentication page enhancements */
.form-control:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.card {
  border: none;
  border-radius: 12px;
}

.form-control-lg {
  border-radius: 8px;
  padding: 12px 16px;
}

.text-primary {
  color: #667eea !important;
}

/* Navbar Specific Styling */
.navbar {
  backdrop-filter: blur(10px);
  background: rgba(33, 37, 41, 0.95) !important;
  transition: all 0.3s ease;
}

.dropdown-menu {
  border: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.98);
  min-width: 200px;
}

.dropdown-item {
  transition: all 0.2s ease;
  border-radius: 8px;
  margin: 2px 8px;
}

.dropdown-item:hover {
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
}

/* Responsive Navbar Adjustments */
@media (max-width: 991px) {
  .navbar-nav {
    padding-top: 1rem;
  }

  .nav-item {
    margin: 0.25rem 0;
  }
}
