
        img.wp-smiley,
        img.emoji {
            display: inline !important;
            border: none !important;
            box-shadow: none !important;
            height: 1em !important;
            width: 1em !important;
            margin: 0 .07em !important;
            vertical-align: -0.1em !important;
            background: none !important;
            padding: 0 !important;
        }
         .download-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      margin: 25px 0;
    }

    .btn-download {
      display: inline-flex;
      align-items: center;
      padding: 12px 20px;
      font-size: 16px;
      font-weight: bold;
      text-decoration: none;
      color: #fff;
      background: linear-gradient(145deg, #ff4f7a, #e73c6f);
      border: none;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(255, 79, 122, 0.4);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .btn-download:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 18px rgba(255, 79, 122, 0.6);
    }

    .btn-download svg {
      margin-right: 10px;
      width: 20px;
      height: 20px;
      fill: #fff;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 15px;
    }

    table td, table th {
      border: 1px solid #2a2a2a;
      padding: 10px;
    }

    table th {
      background-color: #1e1e1e;
    }

    table tr:nth-child(even) {
      background-color: #1a1a1a;
    }

    ol {
      padding-left: 20px;
    }
    
