/* Popover component styles */
.popover {
  position: absolute;
  background: white;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  padding: 12px;
  max-width: 300px;
  z-index: 10;
  display: none;
  pointer-events: auto;
}

.popover-header {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
}

.popover-close {
  cursor: pointer;
  font-size: 18px;
  color: #999;
}

.popover-close:hover {
  color: #333;
}

.popover-body {
  font-size: 14px;
  line-height: 1.4;
}