
    body::after {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background: green;
    padding: 5px 10px;
    z-index: 9999;
    color: white;
    font-family: sans-serif;
  }

  .blog-content {
      line-height: 1.6;
      color: #f0f0f0;
  }

  .blog-content h1, .blog-content h2, .blog-content h3 {
      color: #4caf50;
  }

  .blog-content a {
      color: #4caf50;
      text-decoration: underline;
  }

  .blog-content a:hover {
      color: #81c784;
  }

  .blog-content blockquote {
      border-left: 4px solid #4caf50;
      padding-left: 1rem;
      background: rgba(76, 175, 80, 0.1);
      color: #81c784;
  }

  .blog-content code {
      background: #2d2d2d;
      color: #4caf50;
      padding: 0.2rem 0.4rem;
      border-radius: 4px;
      font-family: 'Fira Code', monospace;
  }

  .blog-content pre {
      background: #2d2d2d;
      padding: 1rem;
      border-radius: 8px;
      overflow-x: auto;
  }

  .blog-content pre code {
      background: transparent;
      color: #f0f0f0;
      padding: 0;
  }

  /* Custom spell canvas for code blocks */
  .code-canvas {
      background: #1e1e1e;
      border: 2px solid #4caf50;
      border-radius: 12px;
      margin: 2rem 0;
      box-shadow: 0 0 15px rgba(76, 175, 80, 0.3);
      transition: all 0.3s ease;
      position: relative;
  }

  .code-canvas:hover {
      box-shadow: 0 0 25px rgba(76, 175, 80, 0.5);
      transform: translateY(-2px);
  }

  .code-toolbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #252526;
      border-radius: 12px 12px 0 0;
      padding: 0.5rem 1rem;
      border-bottom: 1px solid #4caf5055;
  }

  .code-lang {
      font-size: 0.85rem;
      color: #4caf50;
      font-family: 'Cinzel Decorative', cursive;
      text-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
  }

  .copy-btn {
      background: #2d2d2d;
      color: #4caf50;
      border: 1px solid #4caf50;
      padding: 4px 10px;
      border-radius: 6px;
      cursor: pointer;
      font-family: 'MedievalSharp', cursive;
      transition: 0.3s ease;
  }

  .copy-btn:hover {
      background: #4caf50;
      color: #1e1e1e;
      box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
  }
  .copy-btn.copied {
      background-color: #4CAF50;
      color: white;
  }
  .codehilite {
      padding: 1.5rem;
      border-radius: 0 0 12px 12px;
      font-family: 'Fira Code', monospace;
      overflow-x: auto;
  }

  .code-canvas::before {
      content: '';
      position: absolute;
      top: -2px;
      left: -2px;
      right: -2px;
      bottom: -2px;
      border-radius: 14px;
      background: linear-gradient(45deg, #4caf50, #1e1e1e, #4caf50);
      z-index: -1;
      animation: spell-glow 3s linear infinite;
  }

  @keyframes spell-glow {
      0% { opacity: 0.3; }
      50% { opacity: 0.6; }
      100% { opacity: 0.3; }
}
  /* Engagement buttons */
.engagement-btn {
    transition: all 0.2s ease;
}

.engagement-btn:hover {
    transform: scale(1.1);
}

/* Analytics tooltip */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}
/* Engagement Animations */
.animate-engagement {
    animation: engagement-pulse 0.3s ease;
}

@keyframes engagement-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.toast-message {
    animation: toast-fade 3s forwards;
}

@keyframes toast-fade {
    0% { opacity: 0; transform: translateY(20px); }
    10% { opacity: 1; transform: translateY(0); }
    90% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(20px); }
}
/* Add to your existing styles */
.repost-btn {
    transition: all 0.3s ease;
}

.repost-btn:hover:not([disabled]) {
    transform: translateY(-2px);
}

.repost-btn .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.repost-btn[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
}

.repost-indicator {
    background: rgba(76, 175, 80, 0.1);
    border-left: 3px solid #4CAF50;
    padding: 8px 12px;
    border-radius: 0 4px 4px 0;
    margin: 10px 0;
    font-size: 0.9rem;
}

.repost-indicator a {
    color: #4CAF50;
    font-weight: bold;
}

.repost-indicator a:hover {
    text-decoration: underline;
}
.repost-btn[disabled] {
    cursor: not-allowed;
    opacity: 0.8;
}

.repost-btn[disabled] .fa-retweet {
    color: #4CAF50 !important;
}
/* Table styling */
.table-container {
    overflow-x: auto;
    margin: 2rem 0;
    border: 1px solid #4caf5055;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.2);
}

.blog-content table {
    width: 100%;
    border-collapse: collapse;
    background: #1e1e1e;
    font-family: 'MedievalSharp', cursive;
}

.blog-content th {
    background-color: #4caf50;
    color: #1e1e1e;
    padding: 12px;
    text-align: left;
    border: 1px solid #4caf50;
}

.blog-content td {
    padding: 10px;
    border: 1px solid #4caf5055;
    color: #f0f0f0;
}

.blog-content tr:nth-child(even) {
    background-color: #252526;
}

.blog-content tr:hover {
    background-color: #2d2d2d;
}

/* Image styling */
.image-container {
    margin: 2rem 0;
    text-align: center;
    border: 1px solid #4caf5055;
    border-radius: 8px;
    padding: 10px;
    background: #1e1e1e;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.2);
}

.blog-image {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
    margin: 0 auto;
}

.blog-image:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

/* Editor preview styling */
.editor-preview {
    border: 1px solid #4caf5055;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    background: #1e1e1e;
}


    @keyframes scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-100% / 2)); }
    }
    
    .animate-infinite-scroll {
        display: flex;
        width: calc(200% + 1.5rem);
        animation: scroll 40s linear infinite;
    }
    
    .hover\:pause:hover {
        animation-play-state: paused;
    }
    
    .glow-card {
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    }
    
    .glow-card:hover {
        box-shadow: 0 0 25px rgba(34, 211, 238, 0.3);
    }
    
    .glow-button {
        box-shadow: 0 0 10px rgba(34, 211, 238, 0.5);
        transition: all 0.3s ease;
    }
    
    .glow-button:hover {
        box-shadow: 0 0 20px rgba(34, 211, 238, 0.8);
        transform: translateY(-1px);
    }