.an-comment-bubble {
  background: #fff;
  border: 1px solid #bbb;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  padding: 2px 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.an-comment-bubble:hover { background: #ffe066; }

.an-delete-note {
  background: #fff0f0;
  border: 1px solid #e0bbbb;
  border-radius: 50%;
  cursor: pointer;
  padding: 1px 2px;
  font-size: 13px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.an-delete-note:hover { background: #ffe0e0; }

.an-comment-popup {
  background: #fff;
  border: 1px solid #bbb;
  border-radius: 6px;
  padding: 8px;
  min-width: 180px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 999;
}
.an-comment-popup textarea {
  width: 160px;
  height: 60px;
  margin-bottom: 6px;
  resize: vertical;
  display: block;
}

.an-comment-display {
  background: #FEEF7D;
  color: #444;
  padding: 4px 12px;
  border-radius: 5px;
  font-size: 13px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  position: absolute;
  z-index: 5010;
  pointer-events: auto;
}
