/* floating_buttons.css */
.rr-floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1001;
  }
  
  .rr-floating-buttons a {
    background-color: #d41405;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    font-size: 1.2rem;
    transition: background-color 0.3s, transform 0.3s;
  }
  
  .rr-floating-buttons a:hover {
    background-color: #a30e04;
    transform: scale(1.1);
  }
  
  @media (min-width: 769px) {
    .rr-floating-buttons {
      display: none;
    }
  }
  