/* Ad slide container */
.chart-slide.ad-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
}

/* Share section container */
.share-container {
  background: #f5f5f5;
  padding: 40px 20px;
  text-align: center;
  border-radius: 12px;
  font-family: sans-serif;
  font-size: 18px;
}

/* Share prompt message */
.share-container p {
  font-size: 18px;
  margin-bottom: 20px;
}

/* Button links if you still use them */
.share-buttons {
  margin-top: 20px;
}

.share-buttons a {
  margin: 0 10px;
  padding: 10px 15px;
  text-decoration: none;
  background-color: #26a69a;
  border-radius: 5px;
  color: white;
  transition: background-color 0.2s;
}

.share-buttons a:hover {
  transform: scale(1.1);
}

/* Icon layout */
.share-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* Icon box */
.share-icon {
  background: white;
  border-radius: 8px;
  padding: 12px;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.share-icon:hover {
  transform: scale(1.1);
}

/* Icon image */
.share-icon img {
  width: 24px;
  height: 24px;
}
