:where([class^="ri-"])::before {
  content: "\f3c2";
}

body {
  font-family: "Inter", sans-serif;
  color: #1f2937;
  background: linear-gradient(135deg, #fff7ed, #fffbeb, #fffbeb);
}

.progress-container {
  width: 100%;
  height: 4px;
  background: #f3f4f6;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.progress-bar {
  height: 4px;
  background: #E6521F;
  width: 0%;
}

.tooltip {
  position: relative;
  border-bottom: 1px dotted #FB9E3A;
  cursor: help;
}

.tooltip .tooltip-text {
  visibility: hidden;
  width: 240px;
  background-color: #1f2937;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 8px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -120px;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 0.875rem;
}

.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.section-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.section-content.active {
  max-height: 2000px;
  transition: max-height 0.5s ease-in;
}
/* 
input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #d1d5db;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  position: relative;
}

input[type="checkbox"]:checked {
  background-color: #E6521F;
  border-color: #4f46e5;
}

input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  top: 2px;
  left: 6px;
  transform: rotate(45deg);
} */
