@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* Base Styles */
body {
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #0D1117;
}
::-webkit-scrollbar-thumb {
  background: #374151;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #4B5563;
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fade-in {
  animation: fade-in 0.6s ease-out forwards;
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Custom Radio Buttons for Wizard */
.radio-option {
  cursor: pointer;
}

.radio-option > div {
  transition: all 0.2s ease;
}

.radio-option:hover > div {
  border-color: #10b981;
  background-color: rgba(16, 185, 129, 0.05); /* very subtle emerald */
}

.radio-option input:checked + div {
  border-color: #10b981;
  background-color: rgba(16, 185, 129, 0.1);
  box-shadow: 0 0 0 1px #10b981;
}

.radio-option input:checked + div .indicator-circle {
  border-color: #10b981;
}

.radio-option input:checked + div .indicator-circle::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  background-color: #10b981;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.indicator-circle {
  width: 22px;
  height: 22px;
  border: 2px solid #4B5563;
  border-radius: 50%;
  position: relative;
  transition: border-color 0.2s ease;
}
