/* General Widget Styles */
.crypto-donations-widget {
  font-family: "Arial", sans-serif;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  max-width: 600px;
  margin: 20px auto;
}

.crypto-donations-title {
  font-size: 24px;
  color: #333333;
  text-align: center;
  margin-bottom: 10px;
  font-weight: bold;
}

.crypto-donations-description {
  font-size: 16px;
  color: #555555;
  text-align: center;
  margin-bottom: 20px;
}

/* Cards Container */
.crypto-cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

/* Individual Card */
.crypto-card {
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 120px;
  text-align: center;
  padding: 15px;
  cursor: pointer;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.crypto-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
}

.crypto-card img.crypto-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
  border-radius: 50%;
  object-fit: cover;
}

.crypto-card .crypto-name {
  font-weight: bold;
  font-size: 14px;
  color: #333333;
}

/* Address Display */
.crypto-address-container {
  margin-top: 20px;
  text-align: center;
  display: none;
  /* Initially hidden */
}

.crypto-address-container.active {
  display: block;
  /* Show when active */
}

.crypto-address {
  font-family: "Courier New", Courier, monospace;
  background: #f1f1f1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  display: inline-block;
  margin-top: 10px;
  color: #333333;
  word-break: break-all;
}

.copy-icon {
  cursor: pointer;
  color: #007bff;
  margin-left: 10px;
  transition: color 0.3s ease;
  vertical-align: middle;
}

.copy-icon:hover {
  color: #0056b3;
}

/* Footer */
.crypto-donations-footer {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #555555;
  padding: 20px;
  background-color: #f1f1f1;
  border-radius: 5px;
  display: center;
  align-items: center;
  justify-content: center;
  height: 60px;
}

/* QR Code Styling */
#qrcode {
  margin: 10px auto;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  min-height: 128px;
}