/* Custom styles for AutoFlow Pro */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');
:root {
  --bs-primary: #3b82f6;
  --bs-success: #10b981;
  --bs-warning: #f59e0b;
  --bs-danger: #ef4444;
  --bs-info: #06b6d4;
}

body {
    font-family: 'Montserrat', sans-serif;
}

/* Status dots */
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

/* Card hover effects */
.card {
  transition: all 0.2s ease-in-out;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Custom button styles */
.btn {
  border-radius: 8px;
  font-weight: 500;
}

/* Progress bars */
.progress {
  border-radius: 10px;
}

/* Badge styles */
.badge {
  font-weight: 500;
  padding: 0.375rem 0.75rem;
}

/* Navbar customization */
.navbar-brand {
  font-size: 1.5rem;
}

/* Card title spacing */
.card-title {
  margin-bottom: 0.5rem;
}

/* Custom spacing for stats cards */
.stats-card {
  text-align: center;
  padding: 2rem 1rem;
}

/* Animation for loading states */
.spinner-border-sm {
  width: 1rem;
  height: 1rem;
}

/* Custom alert styles */
.alert {
  border-radius: 8px;
  border: none;
}

/* Form control customization */
.form-control,
.form-select {
  border-radius: 6px;
  border: 1px solid #d1d5db;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--bs-primary);
  box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
}

/* Table customization */
.table {
  border-radius: 8px;
  overflow: hidden;
}

/* Modal customization */
.modal-content {
  border-radius: 12px;
  border: none;
}

/* Tooltip customization */
.tooltip {
  font-size: 0.875rem;
}

/* Custom spacing utilities */
.gap-1 {
  gap: 0.25rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 1rem;
}
.gap-4 {
  gap: 1.5rem;
}
.gap-5 {
  gap: 3rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .display-6 {
    font-size: 2rem;
  }

  .navbar-nav.flex-row {
    flex-direction: column !important;
  }

  .navbar-nav.flex-row .nav-link {
    margin-right: 0 !important;
    margin-bottom: 0.5rem;
  }
}

/* Loading animation */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loading-spinner {
  animation: spin 1s linear infinite;
}

/* Success/Error states */
.text-success {
  color: var(--bs-success) !important;
}
.text-danger {
  color: var(--bs-danger) !important;
}
.text-warning {
  color: var(--bs-warning) !important;
}
.text-info {
  color: var(--bs-info) !important;
}

/* Custom shadows */
.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.shadow {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}
.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}



