/* src/css/style.css */
.radio-btn span {
  display: inline-block;
  position: relative;
  padding: 0.5rem 1rem;
  cursor: pointer;
  background: #f8f9fa;
  border-radius: 9999px;
  border-right: none;
  user-select: none;
}
.radio-btn input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.radio-btn input:checked + span {
  background: #5bcfcb;
}
.radio-btn span:hover {
  background: #e2e6ea;
}
.pathways-select {
  border: 0;
  color: #193762 !important;
  appearance: auto;
  font-size: 1rem;
}
.pathways-select.active {
  background: #5bcfcb !important;
}
.chart-badge {
  position: absolute;
  pointer-events: none;
  text-align: center;
  font-weight: bold;
  background: white;
  border-radius: 9999px;
  padding: 0.1rem 1rem;
  font-size: 1rem;
  -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.4);
}
.chart-badge.top {
  bottom: calc(50% + 0.3rem);
  left: 50%;
  transform: translateX(-50%);
}
.chart-badge.bottom {
  top: calc(50% + 0.3rem);
  left: 50%;
  transform: translateX(-50%);
}
.chart-badge.left {
  right: calc(50% + 0.3rem);
  top: 50%;
  transform: translateY(-50%);
}
.chart-badge.right {
  left: calc(50% + 0.3rem);
  top: 50%;
  transform: translateY(-50%);
}
.pathways-viz {
  min-height: 200px;
  position: relative;
}
@media (min-width: 992px) {
  .pathways-viz {
    min-height: 500px;
  }
}
@media (min-width: 1500px) {
  .pathways-viz {
    min-height: 600px;
  }
}
