.tceb-ca-widget {
  --tceb-ca-primary: #0868e8;
  --tceb-ca-text: #1d2a44;
  --tceb-ca-muted: #59657a;
  --tceb-ca-border: #d6dfec;
  --tceb-ca-bg: #ffffff;
  display: flex;
  width: 100%;
  box-sizing: border-box;
  flex-wrap: wrap;
  gap: 30px;
  color: var(--tceb-ca-text);
  font-family: inherit;
}
.tceb-ca-widget *, .tceb-ca-widget *::before, .tceb-ca-widget *::after { box-sizing: border-box; }
.tceb-ca-layout-column { flex-direction: column; }
.tceb-ca-layout-row { flex-direction: row; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; }
.tceb-ca-view-block,
.tceb-ca-share-block { min-width: 0; }
.tceb-ca-section-label {
  margin: 0 0 14px;
  color: var(--tceb-ca-muted);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 700;
  text-transform: uppercase;
}
.tceb-ca-view-value-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
}
.tceb-ca-eye-icon,
.tceb-ca-button-icon {
  display: inline-flex;
  flex: 0 0 auto;
  color: var(--tceb-ca-primary);
}
.tceb-ca-eye-icon svg { width: 32px; height: 32px; fill: currentColor; }
.tceb-ca-button-icon svg { width: 21px; height: 21px; fill: currentColor; }
.tceb-ca-share-buttons {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 12px;
}
.tceb-ca-share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 10px 18px;
  border: 1px solid var(--tceb-ca-border);
  border-radius: 9px;
  background: var(--tceb-ca-bg);
  color: var(--tceb-ca-text);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  text-decoration: none !important;
  transition: border-color .18s ease, color .18s ease, background .18s ease, transform .18s ease;
  cursor: pointer;
}
.tceb-ca-share-button:hover,
.tceb-ca-share-button:focus-visible {
  border-color: var(--tceb-ca-primary);
  color: var(--tceb-ca-primary);
  background: #f6faff;
  transform: translateY(-1px);
  outline: none;
}
.tceb-ca-copy-status {
  min-height: 20px;
  margin-top: 8px;
  color: var(--tceb-ca-primary);
  font-size: 13px;
}
@media (max-width: 767px) {
  .tceb-ca-widget { gap: 22px; }
  .tceb-ca-layout-row { flex-direction: column; align-items: stretch; }
  .tceb-ca-share-buttons { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .tceb-ca-share-button { width: 100%; min-height: 46px; padding: 9px 12px; }
  .tceb-ca-section-label { font-size: 14px; margin-bottom: 11px; }
  .tceb-ca-view-value-wrap { font-size: 24px; }
  .tceb-ca-eye-icon svg { width: 28px; height: 28px; }
}
