/* =========================================
   MY ANCESTRY WIDGET
   ========================================= */

.ancestry-widget {
  width: 200%;
  max-width: 380px;
  margin: 10px auto;
  box-sizing: border-box;
  background: #171217;
  border: 1px solid #c3a7ac;
  color: #f1e4e7;
  font-family: "rainyhearts", monospace, sans-serif;
  font-size: 12px;
  box-shadow: 2px 2px 0px #0b090b;
}

/* HEADER */

.ancestry-title {
  padding: 6px 8px;
  background: #c3a7ac;
  color: #171217;
  text-align: center;
  font-family: "Pixelated Elegance", "Kuchibue", "rainyhearts", monospace, sans-serif;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
}

/* SCROLLING AREA */

.ancestry-scroll {
  height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 9px;
  box-sizing: border-box;
}

/* INTRO */

.ancestry-intro {
  text-align: center;
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px dotted #594a50;
}

.ancestry-intro span {
  font-size: 20px;
  display: block;
  margin-bottom: 2px;
}

.ancestry-intro p {
  margin: 0;
  color: #c3a7ac;
}

/* REGION GROUPS */

.ancestry-group {
  margin-bottom: 13px;
  padding-bottom: 9px;
  border-bottom: 1px dotted #594a50;
}

.ancestry-group h3 {
  margin: 0 0 7px;
  color: #c3a7ac;
  font-family: "Pixelated Elegance", "Kuchibue", "rainyhearts", monospace, sans-serif;
  font-size: 13px;
  font-weight: bold;
}

/* REGION NAME + PERCENT */

.ancestry-region {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5px;
  line-height: 1.2;
}

.region-name {
  flex: 1;
}

.region-percent {
  flex: 0 0 auto;
  color: #c3a7ac;
  font-weight: bold;
}

/* PERCENTAGE BAR */

.ancestry-bar {
  width: 100%;
  height: 4px;
  margin: 3px 0 7px;
  background: #2c2329;
  border: 1px solid #3e3238;
  box-sizing: border-box;
}

.ancestry-bar span {
  display: block;
  height: 100%;
  background: #c3a7ac;
}

/* ANCESTRAL JOURNEYS */

.journeys-section {
  margin-top: 4px;
}

.journeys-title {
  margin-bottom: 10px;
  color: #c3a7ac;
  text-align: center;
  font-family: "Pixelated Elegance", "Kuchibue", "rainyhearts", monospace, sans-serif;
  font-size: 13px;
  font-weight: bold;
}

.journey {
  display: flex;
  gap: 7px;
  margin-bottom: 11px;
  padding-bottom: 9px;
  border-bottom: 1px dotted #594a50;
}

.journey-symbol {
  flex: 0 0 auto;
  color: #c3a7ac;
  font-size: 14px;
}

.journey strong {
  display: block;
  color: #f1e4e7;
  line-height: 1.2;
}

.journey small {
  display: block;
  margin-top: 4px;
  color: #c3a7ac;
  line-height: 1.2;
}

/* FOOTER */

.ancestry-footer {
  padding-top: 3px;
  text-align: center;
  color: #8f7b81;
  font-size: 10px;
}

/* SCROLLBAR */

.ancestry-scroll::-webkit-scrollbar {
  width: 8px;
}

.ancestry-scroll::-webkit-scrollbar-track {
  background: #171217;
}

.ancestry-scroll::-webkit-scrollbar-thumb {
  background: #c3a7ac;
  border: 2px solid #171217;
}

.ancestry-scroll::-webkit-scrollbar-thumb:hover {
  background: #d8c1c5;
}

/* MOBILE */

@media (max-width: 576px) {
  .ancestry-widget {
    max-width: 100%;
  }
}