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

/* Legacy alert styles for compatibility */
.alert-debug {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
  border-left: 4px solid #28a745;
}

.alert-error {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
  border-left: 4px solid #dc3545;
}

/* Additional project-specific styles */
.btn-project {
  background: linear-gradient(45deg, #ff0d00, #3898ec);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-project:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 13, 0, 0.3);
  color: white;
}

/* Custom scrollbar for modern browsers */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary, #f8f9fa);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #ff0d00, #3898ec);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(45deg, #e00b00, #2a7bc8);
}

/* Print styles */
@media print {
  .navbar-wrapper,
  .theme-toggle,
  .btn-custom,
  .btn-outline-custom {
    display: none !important;
  }

  .main-content {
    background: white !important;
    color: black !important;
  }

  .content-wrapper {
    box-shadow: none !important;
    border: 1px solid #ddd;
  }
}

/* Utilities extracted from inline styles to keep templates clean */
.sticky-top-1rem {
  top: 1rem !important;
}

.w-max-200 {
  max-width: 200px !important;
}

.w-min-220 {
  min-width: 220px !important;
}

.object-cover {
  object-fit: cover !important;
}
