.analytics-admin {
  margin-bottom: 34px;
  padding: 28px;
  border: 1px solid #dce7f5;
  border-radius: 24px;
  background: linear-gradient(145deg, #f8fbff 0%, #fff 52%, #f6fffd 100%);
  box-shadow: 0 18px 55px rgba(21, 72, 138, 0.08);
}

.analytics-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.analytics-head h2 {
  margin: 8px 0;
  font-size: 28px;
  letter-spacing: -0.05em;
}

.analytics-head p:last-child {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.analytics-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  padding: 8px 11px;
  border: 1px solid #bdebd9;
  border-radius: 999px;
  background: #effcf7;
  color: #126548;
  font-size: 11px;
  font-weight: 700;
}

.analytics-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #20b77a;
  box-shadow: 0 0 0 5px rgba(32, 183, 122, 0.12);
}

.analytics-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.analytics-kpis article {
  padding: 18px;
  border: 1px solid rgba(210, 221, 238, 0.9);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.85);
}

.analytics-kpis small,
.analytics-kpis span {
  display: block;
  color: var(--muted);
  font-size: 11px;
}

.analytics-kpis strong {
  display: block;
  margin: 8px 0 3px;
  font-size: 30px;
  letter-spacing: -0.06em;
}

.analytics-country-card {
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid rgba(210, 221, 238, 0.9);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.88);
}

.analytics-country-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid #e9eef5;
}

.analytics-country-head h3 {
  margin: 0 0 4px;
  font-size: 16px;
}

.analytics-country-head p,
.analytics-country-head small {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.analytics-table-wrap {
  overflow-x: auto;
}

.analytics-country-card table {
  width: 100%;
  min-width: 690px;
  border-collapse: collapse;
}

.analytics-country-card th,
.analytics-country-card td {
  padding: 13px 20px;
  border-bottom: 1px solid #eef1f5;
  text-align: left;
  font-size: 12px;
}

.analytics-country-card th {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.analytics-country-card tbody tr:last-child td {
  border-bottom: 0;
}

.country-name {
  display: flex;
  align-items: center;
  gap: 9px;
}

.country-name > i {
  font-style: normal;
  font-size: 19px;
}

.country-name strong {
  font-size: 13px;
}

.country-name small {
  color: var(--muted);
}

.country-share {
  display: grid;
  grid-template-columns: 70px auto;
  align-items: center;
  gap: 8px;
}

.country-share > i {
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: #e7edf5;
}

.country-share > i::after {
  display: block;
  width: var(--share);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), #16b8ad);
  content: "";
}

.country-share b {
  font-size: 11px;
}

.analytics-empty {
  padding: 28px !important;
  color: var(--muted);
  text-align: center !important;
}

.analytics-privacy {
  margin: 14px 2px 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

@media (max-width: 720px) {
  .analytics-admin {
    margin-inline: -2px;
    padding: 20px;
  }

  .analytics-head,
  .analytics-country-head {
    display: grid;
  }

  .analytics-live {
    justify-self: start;
  }

  .analytics-kpis {
    grid-template-columns: 1fr 1fr;
  }

  .analytics-country-head {
    align-items: start;
  }

  .analytics-country-head small {
    line-height: 1.5;
  }
}

