
  .poll.svelte-8va8i8 {
    margin: 15px 0;
    padding: 18px;
    border-radius: 8px;
    background: var(--blockLight);
    position: relative;
  }

  .poll-question.svelte-8va8i8 {
    font-weight: 600;
    margin-bottom: 14px;
    font-size: 1.05em;
  }

  .poll-options.svelte-8va8i8 {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .poll-option.svelte-8va8i8 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 18px 14px 45px;
    border-radius: 6px;
    cursor: pointer;
    background: var(--overlay);
    text-align: left;
    width: 100%;
  }

  .poll-option.svelte-8va8i8::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    transform: translateY(-50%);
    background: var(--panel);
    z-index: 1;
  }

  .poll-is-multiple.svelte-8va8i8 .poll-option:where(.svelte-8va8i8)::before {
    border-radius: 6px;
  }

  .poll-option.svelte-8va8i8::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    border-radius: 6px;
    width: var(--poll-progress, 0%);
    max-width: 100%;
    background: var(--accent);
    opacity: 0.2;
    pointer-events: none;
    transition: width 0.25s ease;
  }

  .poll-option-label.svelte-8va8i8,
  .poll-option-votes.svelte-8va8i8 {
    position: relative;
    z-index: 2;
  }

  .poll-option-label.svelte-8va8i8 {
    display: block;
    flex: 1;
    font-weight: 500;
  }

  .poll-option-votes.svelte-8va8i8 {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 96px;
    text-align: right;
    font-size: 0.82em;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.04em;
  }

  .poll-option.svelte-8va8i8:hover:not(:disabled) {
    background: var(--overlay);
    transform: translateY(-1px);
  }

  .poll-option.selected.svelte-8va8i8::before {
    background: var(--accent);
  }

  .poll-option.svelte-8va8i8:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--buttonBg), transparent 45%);
    outline-offset: 3px;
  }

  .poll-loading.svelte-8va8i8 .poll-option:where(.svelte-8va8i8) {
    opacity: 0.75;
  }

  .poll-has-votes.svelte-8va8i8 .poll-option-votes:where(.svelte-8va8i8) {
    opacity: 0.85;
    text-transform: none;
    font-weight: 500;
  }

  .poll.svelte-8va8i8:not(.poll-has-votes) .poll-option-votes:where(.svelte-8va8i8) {
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.6;
  }

  .poll-total.svelte-8va8i8 {
    margin-top: 16px;
    text-align: right;
    font-size: 0.85em;
    opacity: 0.75;
  }

  .post.svelte-vr4dor {
    position: relative;
    display: flex;
    width: 100%;
    margin-top: 10px;
    padding-bottom: 10px;
    text-align: left;
    gap: 10px;
  }
    .moderated.svelte-vr4dor {
      opacity: 0.5;
      padding-top: 0px;
      padding-bottom: 0px;
    }
      .moderated.svelte-vr4dor .header:where(.svelte-vr4dor) {
        cursor: pointer;
      }
      .hidden.svelte-vr4dor .header:where(.svelte-vr4dor) {
        box-shadow: none;
        background-color: transparent;
      }

    .icon.svelte-vr4dor {
      width: var(--iconSize);
      overflow: hidden;
      cursor: pointer;
      position: relative;
    }
      .icon.svelte-vr4dor img:where(.svelte-vr4dor) {
        display: block;
      }
      .desktop.svelte-vr4dor .icon:where(.svelte-vr4dor) .portrait:where(.svelte-vr4dor) {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        display: block;
      }
      .mobile.svelte-vr4dor .icon:where(.svelte-vr4dor) {
        border: 1px solid var(--panel);
        float: left;
        margin-right: 15px;
        margin-bottom: 5px;
      }
      .badge.svelte-vr4dor {
        top: 0px;
        left: 0px;
      }

  .body.svelte-vr4dor {
    flex: 1;
    overflow: hidden;
  }

    .content.svelte-vr4dor {
      background-color: var(--block);
      overflow-wrap: anywhere;
      /* box-shadow: 2px 2px 3px #0002; */
    }
      .hidden.svelte-vr4dor .content:where(.svelte-vr4dor), .hidden.svelte-vr4dor .toolbar:where(.svelte-vr4dor), .hidden.svelte-vr4dor .icon:where(.svelte-vr4dor), .hidden.svelte-vr4dor .time:where(.svelte-vr4dor), .hidden.svelte-vr4dor .reply:where(.svelte-vr4dor) {
        display: none;
      }
    .header.svelte-vr4dor {
      position: relative;
      width: 100%;
      min-height: 50px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      /*
      background-color: color-mix(in srgb, var(--block), var(--panel) 50%);
      box-shadow: 2px 2px 3px #0002;
      */
      border-bottom: 1px var(--panel) solid;
      background-color: var(--block);
      padding: 5px 15px;
      color: var(--dim);
    }
      .whispered.svelte-vr4dor .content:where(.svelte-vr4dor), .whispered.svelte-vr4dor .header:where(.svelte-vr4dor) {
        background-color: var(--whisper);
      }
      .header.svelte-vr4dor button:where(.svelte-vr4dor) {
        background: none;
        border: none;
        box-shadow: none;
        color: var(--dim);
      }
      .title.svelte-vr4dor {
        flex: 1;
      }
      .time.svelte-vr4dor {
        font-family: arial, sans-serif;
        font-size: 14px;
        opacity: 0.7;
        margin-right: 5px;
      }
      .audience.svelte-vr4dor {
        font-size: 15px;
        padding-left: 5px;
        color: var(--character);
      }
      .toolbar.svelte-vr4dor {
        display: flex;
        align-items: center;
        gap: 10px;
      }
        .delete.svelte-vr4dor, .edit.svelte-vr4dor, .moderate.svelte-vr4dor, .label.svelte-vr4dor {
          padding: 5px;
          font-size: 19px;
          cursor: pointer;
          opacity: 0.7;
        }
        .reply.svelte-vr4dor {
          opacity: 0.7;
        }
          .time.svelte-vr4dor:hover, .delete.svelte-vr4dor:hover, .edit.svelte-vr4dor:hover, .moderate.svelte-vr4dor:hover, .reply.svelte-vr4dor:hover {
            opacity: 1;
            color: var(--text);
          }
    .clear.svelte-vr4dor {
      clear: both;
    }

    .important.svelte-vr4dor .content:where(.svelte-vr4dor), .important.svelte-vr4dor .header:where(.svelte-vr4dor) {
      background-color: var(--prominent);
    }
    .important.svelte-vr4dor div.body:where(.svelte-vr4dor) {
      border-left: 5px solid var(--linkVisited);
    }
    .edited.svelte-vr4dor {
      font-size: 12px;
      color: var(--dim);
    }
    .illustration.svelte-vr4dor {
      object-fit: contain;
    }
    .iconBottom.svelte-vr4dor {
      border: 1px red solid;
    }
    .reward.svelte-vr4dor {
      position: absolute;
      left: 40px;
      width: 50px;
      height: 50px;
      z-index: 99;
      transition: transform 0.2s ease-in-out;
    }
      .reward.svelte-vr4dor:hover {
        transform: scale(1.1);
        filter: brightness(1.2);
      }

  @media (max-width: 860px) {
    .post.svelte-vr4dor {
      gap: 0px;
    }
    .toolbar.svelte-vr4dor {
      gap: 5px;
    }
    .sep.svelte-vr4dor {
      display: none;
    }
    .header.svelte-vr4dor {
      display: block;
      padding: 10px 10px 5px 10px;
      padding-left: 15px;
    }
      .reaction.svelte-vr4dor {
        padding: 0px 5px;
      }
      .toolbar.svelte-vr4dor {
        width: 100%;
        display: flex;
      }
        .toolbar.svelte-vr4dor .time:where(.svelte-vr4dor) {
          flex: 1;
        }
    .content.svelte-vr4dor {
      padding: 15px;
    }
  }
  @media (max-width: 500px) {
    .illustration.svelte-vr4dor {
      max-width: 20%;
    }
    .icon.svelte-vr4dor {
      position: relative;
      overflow: visible;
    }
      .reward.svelte-vr4dor {
        position: absolute;
        bottom: -10px;
        right: -10px;
        width: 30px;
        height: 30px;
        left: unset;
      }
  }
