body .rankings-widget {
  border-color: #0066CC #C2CBD3 #C2CBD3 #C2CBD3;
  border-radius: 6px;
  border-style: solid;
  border-width: 4px 1px 1px 1px;
  overflow: hidden;
}
body .rankings-widget h3.rankings-widget__heading {
  border-bottom: 1px solid #C2CBD3;
  color: #1E2D3C;
  font-size: 18px;
  font-weight: 800;
  padding: 12px 24px;
  text-transform: uppercase;
}
body .rankings-widget__formats {
  display: flex;
}
body button.rankings-widget__format-button {
  background-color: #F5F7FA;
  border-bottom: 1px solid #C2CBD3;
  border-radius: 0;
  box-shadow: none;
  color: #6B7280;
  cursor: pointer;
  flex: 1;
  font-family: inherit;
  font-size: clamp(14px, 2vw, 15px);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  transition: none;
}
body button.rankings-widget__format-button--active {
  background-color: #E1E6EB;
  border-bottom-color: transparent;
  color: #1E2D3C;
}
body button.rankings-widget__format-button--active:not(:first-child) {
  border-left: 1px solid #C2CBD3;
}
body button.rankings-widget__format-button--active:not(:last-child) {
  border-right: 1px solid #C2CBD3;
}

body .rankings-widget__pagination {
  display: flex;
  grid-gap: 12px;
  padding: 12px;
}
body .rankings-widget__pagination-label {
  align-items: center;
  color: #6B7280;
  display: flex;
  flex: 1;
  font-size: clamp(12px, 3vw, 14px);
  line-height: 1;
  text-transform: uppercase;
}
body button.rankings-widget__pagination-button {
  background-color: #FFF;
  border: 1px solid #C2CBD3;
  border-radius: 6px;
  box-shadow: none;
  color: #6B7280;
  font-size: clamp(12px, 3vw, 14px);
  height: auto;
  min-height: unset;
  padding: 6px 12px;
  text-transform: uppercase;
  width: auto;
}
body button.rankings-widget__pagination-button--disabled {
  background-color: #F5F7FA;
  border-color: #E1E6EB;
  opacity: 0.5;
}
body button.rankings-widget__pagination-button:hover:not(button.rankings-widget__pagination-button--disabled) {
  border-color: #2B2F33;
  color: #2B2F33;
}

body .rankings-widget__positions {
  background-color: #E1E6EB;
  border-bottom: 1px solid #E1E6EB;
  display: flex;
  flex-wrap: nowrap;
  grid-gap: 1px;
  justify-content: flex-start;
  padding: 8px 6px 0;
  white-space: nowrap;
}
body button.rankings-widget__position-button {
  background-color: #FFF;
  border: none;
  border-radius: 6px 6px 0 0;
  box-shadow: none;
  color: #6B7280;
  cursor: pointer;
  font-family: inherit;
  font-size: clamp(12px, 2vw, 13px);
  font-weight: 500;
  height: auto;
  line-height: 1.5;
  min-height: unset;
  padding: 6px;
  transition: none;
}
body button.rankings-widget__position-button--active {
  background-color: #F5F7FA;
  color: #2B2F33;
  margin-bottom: -1px;
  padding-bottom: 7px;
  position: relative;
  z-index: 1;
}

body .rankings-widget__table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: clamp(14px, 3vw, 16px);
  line-height: 1.5;
  width: 100%;
}
body .rankings-widget__table tbody tr td {
  border-top: 1px solid #E1E6EB;
  padding: 6px;
}
body .rankings-widget__table tbody tr td:first-child {
  padding-left: 16px;
}
body .rankings-widget__table tbody tr td:last-child {
  padding-right: 16px;
}
body .rankings-widget__table thead th {
  background-color: #F5F7FA;
  color: #6B7280;
  font-size: clamp(12px, 2vw, 14px);
  font-weight: 700;
  padding: 6px;
  text-transform: uppercase;
}
body .rankings-widget__table thead th:first-child {
  padding-left: 16px;
}
body .rankings-widget__table thead th:last-child {
  padding-right: 16px;
}
body .rankings-widget__toggle {
  background-color: #E1E6EB;
  border-top: 1px solid #C2CBD3;
  padding: 12px;
}
body button.rankings-widget__toggle-button {
  font-size: clamp(14px, 2vw, 15px);
  font-weight: 700;
  height: auto;
  line-height: 40px;
  min-height: unset;
  padding: 0 16px;
  text-transform: uppercase;
}
body button.rankings-widget__toggle-button:disabled {
  background-color: #C2CBD3;
  opacity: 0.75;
}

body .skeleton {
  height: 16px;
  background: linear-gradient(90deg, #F5F7FA 0%, #E1E6EB 20%, #F5F7FA 40%, #F5F7FA 100%);
  background-size: 200% 100%;
  border-radius: 4px;
  animation: shimmer 1.5s infinite;
}
body .skeleton--short {
  width: 60%;
}
body .skeleton--medium {
  width: 80%;
}
body .skeleton--long {
  width: 100%;
}
body {
  /* Shimmer animation */
}
@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
body {
  /* Fade in animation for loaded content */
}
body .fade-in {
  animation: fadeIn 0.5s ease-in;
}
