/* Fact Check Button */
#fact-check-button {
  display: block;
  margin: 5px auto !important;
  padding: 5px 7px;
  background-color: #00d084;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* Fact Check Modal */
.fact-check-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
 
  background-color: rgba(0, 0, 0, 0.5);
}

.fact-check-modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  max-width: 600px;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.fact-check-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #00d084;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}

.fact-check-modal-close:hover {
  color: #00d084;
}

