/* Main CSS file for OmegaQ project */
/* Custom styles and component overrides */

/* Base styles */
:root {
  --primary-color: #F4B942;
  --secondary-color: #1E293B;
  --accent-color: #F4B942;
  --text-color: #1f2937;
  --bg-color: #f9fafb;
}

/* Custom utility classes */
.brand-gradient {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

/* Loading states */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.spinner {
  border: 2px solid #f3f3f3;
  border-top: 2px solid var(--primary-color);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
}

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

/* Custom form styles */
.form-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(244, 185, 66, 0.1);
}

/* Role badge colors */
.role-admin {
  background-color: #fef2f2;
  color: #991b1b;
}

.role-member {
  background-color: #f0f9ff;
  color: #1e40af;
}

.role-user {
  background-color: #f0fdf4;
  color: #166534;
}

/* Animation utilities */
.fade-in {
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.slide-in {
  animation: slideIn 0.3s ease-in-out;
}

@keyframes slideIn {
  from {
    transform: translateY(-10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Component styles will be added as the project grows */

/* Print styles */
@media print {
  .no-print {
    display: none !important;
  }
} 