/* Custom Brand Colors */
:root {
  --brand-primary: #FF5C2F;
  --brand-primary-hover: #E54A1F;
  --brand-primary-light: #FF7A52;
}

/* Override Tailwind amber colors with brand color */
.bg-amber-500 { background-color: var(--brand-primary) !important; }
.bg-amber-600 { background-color: var(--brand-primary) !important; }
.bg-amber-700 { background-color: var(--brand-primary-hover) !important; }
.hover\:bg-amber-500:hover { background-color: var(--brand-primary) !important; }
.hover\:bg-amber-600:hover { background-color: var(--brand-primary) !important; }
.hover\:bg-amber-700:hover { background-color: var(--brand-primary-hover) !important; }

.text-amber-500 { color: var(--brand-primary) !important; }
.text-amber-600 { color: var(--brand-primary) !important; }
.text-amber-700 { color: var(--brand-primary-hover) !important; }
.hover\:text-amber-400:hover { color: var(--brand-primary-light) !important; }
.hover\:text-amber-500:hover { color: var(--brand-primary) !important; }
.hover\:text-amber-600:hover { color: var(--brand-primary) !important; }
.hover\:text-amber-700:hover { color: var(--brand-primary-hover) !important; }

.border-amber-500 { border-color: var(--brand-primary) !important; }
.border-amber-600 { border-color: var(--brand-primary) !important; }

.focus\:ring-amber-500:focus { --tw-ring-color: var(--brand-primary) !important; }
.focus\:border-amber-500:focus { border-color: var(--brand-primary) !important; }

.shadow-amber-500\/20 { --tw-shadow-color: rgba(255, 92, 47, 0.2) !important; }
.shadow-amber-600\/20 { --tw-shadow-color: rgba(255, 92, 47, 0.2) !important; }

/* Yellow colors (used in charts) */
.stroke-yellow-500 { stroke: var(--brand-primary) !important; }
.fill-yellow-500 { fill: var(--brand-primary) !important; }

/* Form Components - Premium Overhaul */
.input-field {
  display: block;
  width: 100%;
  padding: 0.8rem 1.1rem;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  color: #1e293b; /* slate-800 */
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.input-field:hover {
  border-color: #cbd5e1;
  background-color: #fcfdfe;
}

.input-field:focus {
  background-color: #ffffff;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 4px rgba(255, 92, 47, 0.1);
  outline: none;
  transform: translateY(-1px);
}

.label-text {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: #475569; /* slate-600 */
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.6rem;
  margin-left: 0.5rem;
}

/* Tab Styling - Refined */
.tab-active {
  background-color: #ffffff;
  color: var(--brand-primary);
  font-weight: 700;
  box-shadow: 0 10px 15px -3px rgba(255, 92, 47, 0.15);
  border: 1px solid rgba(255, 92, 47, 0.1);
  transform: translateY(-1px);
}

.tab-active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 3px;
  background: var(--brand-primary);
  border-radius: 10px 10px 0 0;
}

.tab-inactive {
  color: #94a3b8;
  font-weight: 600;
  border: 1px solid transparent;
}

.tab-inactive:hover {
  color: #334155;
  background-color: #f1f5f9;
}

/* Custom Utilities */
.glass-panel {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.6);
}

.premium-card {
  background: white;
  border-radius: 1.25rem;
  border: 1px solid #f1f5f9;
  box-shadow: 0 4px 20px -4px rgba(0,0,0,0.05);
}

/* Custom Scrollbar for form areas */
.hide-scrollbar::-webkit-scrollbar {
  display: none;
}
.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
