.btnelement { color: red; }
 .youtube-float-button {
    position: fixed;
    top: 45%;
    left: 0;
    z-index: 9999;
    background-color: #FF0000;
    color: white;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    padding: 10px 5px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s;
  }

  .youtube-float-button:hover {
    background-color: #cc0000;
  }

  .youtube-float-button a {
    color: white;
    text-decoration: none;
  }


/* Whatsapp button */
  .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
  }

  .whatsapp-float img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
  }

  .whatsapp-float img:hover {
    transform: scale(1.1);
  }
