.actions {
  margin-top: 10px;
  display: flex;
  font-size: 10px;
  gap: 15px;
}

.action-icon {
  cursor: pointer;            
  transition: color 0.3s ease;
}

.action-icon:hover {
  color: #2a5298;
}

.flag-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
}

.flag-modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  border-radius: 10px;
  width: 300px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.flag-modal-content label {
  display: block;
  margin-top: 10px;
}

.flag-modal-content textarea {
  width: 100%;
  height: 60px;
  margin-top: 5px;
}

.flag-modal-content button {
  margin-top: 15px;
  margin-right: 10px;
}

.copied-message {
  position: absolute;
  background: #333;
  color: white;
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.3s;
}
.copied-message.show {
  opacity: 1;
}
.copy-button {
  cursor: pointer;
  padding: 2px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #f9f9f9;
}
.copy-button:hover {
  background: #e0e0e0;
}