/* Prophetronics ghost event popover */
.prophetronics-popover {
  background: #fff;
  border: 1px solid #e0d5e8;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(62, 33, 85, 0.15);
  padding: 16px;
  width: 300px;
  font-family: inherit;
}
.prophetronics-popover__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.prophetronics-popover__urgency {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.prophetronics-popover__close {
  background: none;
  border: none;
  font-size: 20px;
  color: #999;
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
}
.prophetronics-popover__close:hover {
  color: #333;
}
.prophetronics-popover__title {
  font-size: 15px;
  font-weight: 700;
  color: #3E2155;
  margin: 0 0 4px;
  line-height: 1.3;
}
.prophetronics-popover__date {
  font-size: 12px;
  color: #888;
  margin-bottom: 8px;
}
.prophetronics-popover__reasoning {
  font-size: 13px;
  color: #555;
  margin: 0 0 8px;
  line-height: 1.45;
}
.prophetronics-popover__tags {
  font-size: 11px;
  color: #999;
  margin-bottom: 12px;
}
.prophetronics-popover__actions {
  display: flex;
  gap: 8px;
}
.prophetronics-popover__create {
  background: #712F79;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 6px 14px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
}
.prophetronics-popover__create:hover {
  background: #5a2562;
}
.prophetronics-popover__create:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.prophetronics-popover__dismiss {
  font-size: 13px;
}
