.dv-container {
  font-family: "Franklin Gothic Book", "Franklin Gothic", Arial, sans-serif !important;
  font-size: 11pt !important;
  font-weight: normal !important;
  line-height: normal !important;
  margin: 0;
  background-color: #fff;
}
.dv-header-section {
  width: 100%;
  max-width: 700px;
  min-width: 400px;
  margin: 0 auto 20px auto;
}
.dv-figure-number {
  font-size: 13pt !important;
  font-family: "Franklin Gothic Book", "Franklin Gothic", Arial, sans-serif !important;
  font-weight: normal !important;
  margin-bottom: 5px;
}
.dv-title {
  font-size: 14pt !important;
  font-family: "Franklin Gothic Demi", "Franklin Gothic", Arial, sans-serif !important;
  font-weight: bold !important;
  margin-bottom: 5px;
}
.dv-subtitle {
  font-size: 13pt !important;
  font-family: "Franklin Gothic Book", "Franklin Gothic", Arial, sans-serif !important;
  font-weight: normal !important;
  margin-bottom: 15px;
}
.dv-chart-container {
  width: 100%;
  max-width: 700px;
  min-width: 400px;
  margin: 0 auto;
}
.dv-sources-section {
  width: 100%;
  max-width: 700px;
  min-width: 400px;
  margin: 20px auto 0 auto;
  font-size: 11pt !important;
  font-family: "Franklin Gothic Book", "Franklin Gothic", Arial, sans-serif !important;
  font-weight: normal !important;
  line-height: 1.25 !important;
}
.dv-sources-section b {
  font-weight: bold !important;
}
.dv-sources-section i {
  font-style: italic !important;
}

/* Sources expandable styles */
.dv-sources-details {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}
.dv-sources-details summary {
  outline: none;
  user-select: none;
  list-style: none;
  cursor: pointer;
}
.dv-sources-details summary::-webkit-details-marker {
  display: none;
}
.dv-sources-details summary::marker {
  display: none;
}
.dv-sources-summary-text {
  display: inline;
}
.dv-sources-expand-text {
  display: block;
  color: #c64d2d;
  margin-top: 5px;
}
.dv-sources-details[open] .dv-sources-expand-text {
  display: none;
}
.dv-sources-content {
  margin-top: 10px;
  cursor: text;
}

/* Chart styles */
.dv-chart-container svg {
  font-family: "Franklin Gothic Book", "Franklin Gothic", Arial, sans-serif !important;
  font-size: 11pt !important;
}
.dv-grid-line {
  stroke: black;
  stroke-width: 1;
}
.dv-arrow-line {
  stroke: #666;
}
.dv-arrow-head {
  stroke: #666;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.dv-russia-point {
  fill: #d52b1e;
}
.dv-nato-point {
  fill: #004990;
}
.dv-russia-value, .dv-nato-value {
  fill: #000;
  stroke: #fff;
  stroke-linejoin: round;
  paint-order: stroke;
  font-size: 11pt !important;
  font-family: "Franklin Gothic Book", "Franklin Gothic", Arial, sans-serif !important;
  font-weight: normal !important;
}
.dv-russia-value {
  stroke-width: 6;
}
.dv-nato-value {
  stroke-width: 3;
}
.dv-percent-diff-value {
  fill: #000;
  stroke: #fff;
  stroke-width: 3;
  stroke-linejoin: round;
  paint-order: stroke;
  font-size: 11pt !important;
  font-family: "Franklin Gothic Book", "Franklin Gothic", Arial, sans-serif !important;
  font-weight: bold !important;
}
.dv-metric-label {
  font-size: 11pt !important;
  font-family: "Franklin Gothic Book", "Franklin Gothic", Arial, sans-serif !important;
  font-weight: normal;
  fill: #000;
}
.dv-header-text {
  font-size: 11pt !important;
  font-family: "Franklin Gothic Book", "Franklin Gothic", Arial, sans-serif !important;
  font-weight: normal !important;
  fill: #000;
}
.dv-header-text-bold {
  font-size: 11pt !important;
  font-family: "Franklin Gothic Book", "Franklin Gothic", Arial, sans-serif !important;
  font-weight: bold !important;
  fill: #000;
}
.dv-flag-circle {
  stroke: #666;
  stroke-width: 0.5;
}
.dv-russia-flag-circle {
  fill: url(#russia-flag);
}
.dv-nato-flag-circle {
  fill: url(#nato-flag);
}
.dv-x-axis text {
  font-size: 11pt !important;
  font-family: "Franklin Gothic Book", "Franklin Gothic", Arial, sans-serif !important;
  font-weight: normal;
  fill: #000;
}

/* Tooltip styles */
.dv-chart-tooltip {
  position: absolute;
  visibility: hidden;
  background-color: #333;
  color: white;
  padding: 12px;
  border-radius: 6px;
  font-size: 11pt !important;
  font-family: "Franklin Gothic Book", "Franklin Gothic", Arial, sans-serif !important;
  font-weight: normal !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  pointer-events: none;
  z-index: 1000;
  width: auto;
}
.dv-chart-tooltip::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  left: var(--caret-position, 50%);
  margin-left: -8px;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.dv-chart-tooltip.above::after {
  bottom: -6px;
  border-top: 8px solid #333;
}
.dv-chart-tooltip.below::after {
  top: -6px;
  border-bottom: 8px solid #333;
}