/* Multi-line code blocks */
pre {
    white-space: pre-wrap !important;
    word-wrap: break-word !important;
    max-width: 100%;
    overflow-x: hidden !important;
  }
  
  pre code {
    white-space: pre-wrap !important;
    word-break: break-word !important;
    width: 100%;
    display: inline-block;
  }
  
  /* Inline code blocks */
  p code {
    white-space: normal !important;
    word-break: normal !important;
    width: auto !important;
    display: inline !important;
    background-color: rgba(175, 184, 193, 0.2);
    padding: 0.2em 0.4em;
    border-radius: 6px;
  }

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.social-card {
  display: block;
  padding: 1.5rem;
  border-radius: 8px;
  text-decoration: none !important;
  color: white !important;
  transition: transform 0.2s;
}

.social-card:hover {
  transform: translateY(-3px);
}

.social-card h3 {
  margin-top: 0;
  color: white !important;
}

.social-card.facebook {
  background: #4267B2;
}

.social-card.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-card.tiktok {
  background: linear-gradient(45deg, #000000 0%, #25F4EE 50%, #FE2C55 100%);
}

a button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  color: white;
  background-color: #007bff;
  border: none;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

a button:hover {
  background-color: #0056b3;
}

/* Specific styles for social media buttons */
a[href*="facebook.com"] button {
  background-color: #4267B2;
}

a[href*="tiktok.com"] button {
  background: linear-gradient(45deg, #000000 0%, #25F4EE 50%, #FE2C55 100%);
}

a[href*="instagram.com"] button {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

a[href*="twitter.com"] button {
  background-color: #1DA1F2;
}