.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;
}

.gold-button {
  font-size: 1.2rem;
  font-weight: bold;
  padding: 15px 30px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(145deg, #FFD700, #FFCC00);
color: #333;
box-shadow:
inset 4px 4px 10px rgba(255, 255, 255, 0.3),
inset -4px -4px 10px rgba(0, 0, 0, 0.3),
4px 4px 10px rgba(0, 0, 0, 0.4);
text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
cursor: pointer;
transition: all 0.3s ease;
}

.gold-button:hover {
  background: linear-gradient(145deg, #FFCC00, #FFD700);
  box-shadow:
  inset 2px 2px 6px rgba(0, 0, 0, 0.4),
inset -2px -2px 6px rgba(255, 255, 255, 0.2),
6px 6px 12px rgba(0, 0, 0, 0.5);
transform: translateY(-2px);
}

.gold-button:active {
  transform: translateY(1px);
  box-shadow:
  inset 6px 6px 12px rgba(0, 0, 0, 0.5),
inset -2px -2px 4px rgba(255, 255, 255, 0.2);
}

.gold-link {
  font-size: 10px;
  font-weight: bold;
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 4px;
  background: linear-gradient(145deg, #FFD700, #FFCC00);
color: #333;
display: inline-block;
box-shadow:
inset 1px 1px 2px rgba(255, 255, 255, 0.3),
inset -1px -1px 1px rgba(0, 0, 0, 0.3),
1px 1px 2px rgba(0, 0, 0, 0.4);
text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
cursor: pointer;
transition: all 0.3s ease;
}

.gold-link:hover {
  background: linear-gradient(145deg, #FFCC00, #FFD700);
  box-shadow:
  inset 1px 1px 2px rgba(0, 0, 0, 0.4),
inset -1px -1px 2px rgba(255, 255, 255, 0.2),
1px 1px 2px rgba(0, 0, 0, 0.5);
transform: translateY(-2px);
}

.gold-link:active {
  transform: translateY(1px);
  box-shadow:
  inset 1px 1px 2px rgba(0, 0, 0, 0.5),
inset -1px -1px 2px rgba(255, 255, 255, 0.2);
}