/* Custom styles for DhabiAI Quote Generator */

:root {
  --primary-color: #333333;
  --primary-light: #666666;
  --accent-color: #5c96c8;
  --accent-light: #a6c8e4;
}

/* Layout and spacing adjustments */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #374151;
  line-height: 1.5;
}

/* Custom button styling */
.btn-primary {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: white !important;
}

.btn-primary:hover {
  background-color: var(--primary-light) !important;
  border-color: var(--primary-light) !important;
  color: white !important;
}

.btn-outline.btn-primary {
  color: white !important;
  border-color: var(--primary-color) !important;
  background-color: var(--primary-color) !important;
}

.btn-outline.btn-primary:hover {
  background-color: var(--primary-light) !important;
  border-color: var(--primary-light) !important;
  color: white !important;
}

/* Form styling */
.input, .textarea, .select {
  background-color: #ffffff !important;
  color: #333333 !important;
  border-color: #d1d5db !important;
}

.input:focus, .textarea:focus, .select:focus {
  border-color: var(--accent-color) !important;
  box-shadow: 0 0 0 1px var(--accent-color) !important;
}

.checkbox:checked {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

/* Timeline styling */
.timeline-container {
  margin: 2rem 0;
  position: relative;
}

.timeline-phase {
  padding: 0.5rem;
  color: white;
  font-size: 0.875rem;
  border-radius: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.planning-phase {
  background-color: #4b5563;
}

.design-phase {
  background-color: #6b7280;
}

.development-phase {
  background-color: #374151;
}

.qa-phase {
  background-color: #1f2937;
}

.deployment-phase {
  background-color: #111827;
}

/* PDF-specific styling */
@media print {
  body {
    background-color: white;
  }
  
  .container {
    max-width: 100%;
    padding: 0;
  }
  
  .shadow-md {
    box-shadow: none !important;
  }
}
