.notifications-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.notification {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;

  .notification__comment {
    width: fit-content;
    padding: 1rem;

    background-color: var(--color--bg-1);
    border-radius: var(--border-radius--base)
  }
}

.bell {
  position: relative;
}

.bell__dot {
  position: absolute;
  top: 0px;
  right: -2px;
  width: 5px;
  height: 5px;
  background-color: #d59c76;
  border-radius: 100%;
}
