.floating-button {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  border-left: 2px solid #f79b18 !important;
  border-right: 2px solid #f79b18 !important;
  border-top: 2px solid #f79b18 !important;      /* Top border */
  border-bottom: 2px solid #f79b18 !important;   /* Bottom border */
  background-color: #fff;          /* Optional: ensure contrast */
  padding: 10px;                   /* Optional: space around the image */
  border-radius: 8px;              /* Optional: rounded corners */
}

.floating-button a {
    display: inline-block;
    background: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-button img {
    max-height: 50px;
    display: block;
    width: auto;
}

.floating-button a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
    background-color:#3f5d8b !important;
}

@media (max-width: 600px) {
    .floating-button img {
        max-height: 40px;
    }
    .floating-button a {
        padding: 10px 16px;
    }
}
