
body {
  font-family: "Inter", sans-serif;
  background-color: #f8f7f4;
  color: #4a4a4a;
}
.step-card {
  transition: all 0.3s ease-in-out;
  border-bottom-width: 4px;
  border-color: transparent;
}
.step-card.active {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-color: #3b82f6; /* blue-500 */
}
.content--hidden {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.5s ease-out;
}
.content-visible {
  max-height: 1000px;
  opacity: 1;
  transition: all 0.5s ease-in;
}
.chart-container {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  height: 300px;
  max-height: 300px;
}

.color_nuevo 
{
  background-color: #1746ad;
  color: #fff;
}

.bordeado 
{
  border-style: solid;
  border-width: medium;
  border-color: #3b82f6;
}
