.wz-notification-menu-title {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.wz-notification-menu-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: rgb(var(--v-theme-primary));
  color: rgb(var(--v-theme-on-primary));
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.wz-notification-menu-badge[hidden] {
  display: none !important;
}

.wz-notification-page {
  position: fixed;
  top: var(--wz-notification-top, 64px);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 900;
  overflow-x: hidden;
  overflow-y: auto;
  background:
    rgb(var(--v-theme-background, 250, 250, 250));
  color:
    rgb(var(--v-theme-on-background, 33, 33, 33));
  -webkit-overflow-scrolling: touch;
}

.wz-notification-container {
  width: min(100% - 32px, 900px);
  margin: 0 auto;
  padding: 36px 0 64px;
}

.wz-notification-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.wz-notification-header h1 {
  margin: 0;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.wz-notification-header p {
  margin: 8px 0 0;
  opacity: 0.68;
  font-size: 15px;
  line-height: 1.5;
}

.wz-notification-content {
  width: 100%;
}

.wz-notification-list {
  overflow: hidden;
  border: 1px solid
    rgba(var(--v-theme-on-surface, 33, 33, 33), 0.09);
  border-radius: 18px;
  background:
    rgb(var(--v-theme-surface, 255, 255, 255));
  box-shadow:
    0 8px 26px rgba(0, 0, 0, 0.05);
}

.wz-notification-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  background:
    rgb(var(--v-theme-surface, 255, 255, 255));
}

.wz-notification-item + .wz-notification-item {
  border-top: 1px solid
    rgba(var(--v-theme-on-surface, 33, 33, 33), 0.08);
}

.wz-notification-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background:
    rgba(var(--v-theme-primary), 0.10);
  color:
    rgb(var(--v-theme-primary));
}

.wz-notification-icon .mdi {
  font-size: 23px;
  line-height: 1;
}

.wz-notification-item-body {
  min-width: 0;
  flex: 1 1 auto;
  padding-top: 2px;
}

.wz-notification-message {
  font-size: 15px;
  line-height: 1.55;
}

.wz-notification-event-link {
  color:
    rgb(var(--v-theme-primary));
  font-weight: 650;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.wz-notification-event-link:hover,
.wz-notification-event-link:focus-visible {
  text-decoration: underline;
}

.wz-notification-meta {
  margin-top: 5px;
  opacity: 0.56;
  font-size: 12px;
  line-height: 1.4;
}

.wz-notification-loading,
.wz-notification-empty,
.wz-notification-error {
  border: 1px solid
    rgba(var(--v-theme-on-surface, 33, 33, 33), 0.09);
  border-radius: 18px;
  background:
    rgb(var(--v-theme-surface, 255, 255, 255));
  box-shadow:
    0 8px 26px rgba(0, 0, 0, 0.04);
}

.wz-notification-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 180px;
  padding: 32px;
  opacity: 0.72;
}

.wz-notification-spinner {
  width: 22px;
  height: 22px;
  border: 2px solid
    rgba(var(--v-theme-primary), 0.2);
  border-top-color:
    rgb(var(--v-theme-primary));
  border-radius: 50%;
  animation:
    wz-notification-spin 0.75s linear infinite;
}

@keyframes wz-notification-spin {
  to {
    transform: rotate(360deg);
  }
}

.wz-notification-empty {
  padding: 58px 28px;
  text-align: center;
}

.wz-notification-empty-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background:
    rgba(var(--v-theme-primary), 0.10);
  color:
    rgb(var(--v-theme-primary));
}

.wz-notification-empty-icon .mdi {
  font-size: 31px;
}

.wz-notification-empty h2 {
  margin: 0;
  font-size: 21px;
  font-weight: 700;
}

.wz-notification-empty p {
  max-width: 430px;
  margin: 8px auto 0;
  opacity: 0.65;
  font-size: 14px;
  line-height: 1.55;
}

.wz-notification-error {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 22px;
  color:
    rgb(var(--v-theme-error, 176, 0, 32));
}

.wz-notification-error .mdi {
  flex: 0 0 auto;
  font-size: 23px;
}

@media (max-width: 600px) {
  .wz-notification-container {
    width: min(100% - 24px, 900px);
    padding-top: 24px;
    padding-bottom: 48px;
  }

  .wz-notification-header {
    margin-bottom: 18px;
  }

  .wz-notification-header h1 {
    font-size: 29px;
  }

  .wz-notification-header p {
    font-size: 14px;
  }

  .wz-notification-list,
  .wz-notification-loading,
  .wz-notification-empty,
  .wz-notification-error {
    border-radius: 15px;
  }

  .wz-notification-item {
    gap: 13px;
    padding: 17px 16px;
  }

  .wz-notification-icon {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
  }

  .wz-notification-icon .mdi {
    font-size: 21px;
  }

  .wz-notification-message {
    font-size: 14px;
  }

  .wz-notification-empty {
    padding: 46px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wz-notification-spinner {
    animation-duration: 1.5s;
  }
}


/* WZ_WALL_ACTIVITY_V1 */

.wz-wall-activity-indicator {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 15px 12px 15px;
  padding: 9px 12px;
  border: 1px solid
    rgba(var(--v-theme-primary), 0.22);
  border-radius: 12px;
  background:
    rgba(var(--v-theme-primary), 0.09);
  color:
    rgb(var(--v-theme-primary));
  font-size: 13px;
  line-height: 1.35;
}

.wz-wall-activity-icon {
  flex: 0 0 auto;
  font-size: 19px;
  line-height: 1;
}

.wz-wall-activity-body {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 5px;
  min-width: 0;
}

.wz-wall-activity-title {
  font-weight: 700;
}

.wz-wall-activity-detail {
  opacity: 0.82;
  font-size: 12px;
}

@media (max-width: 600px) {
  .wz-wall-activity-indicator {
    margin: 15px 10px 15px;
    padding: 8px 10px;
  }
}
