#teb-floating-buttons {
  position: fixed;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

/* Wrapper for each floating link */
.teb-float-item {
  position: relative;
  overflow: visible;
}

/* The link container */
.teb-float-link {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.6);
  border-radius: 8px 0 0 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  height: 69px;
  width: auto;
  background-color: rgba(0, 0, 0, 0.6);
  transform: translateX(0);
  transition: transform 0.35s ease;
}

/* Icon container */
/*
.teb-icon img {
  display: block;
  height: 69px;
  width: 69px;
  object-fit: cover;
  border-radius: 8px 0 0 8px;
}*/
.teb-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff; /* white background only under the icon */
  width: 59px;
  height: 59px;
  border-radius: 8px 0 0 8px; /* match the container shape */
  overflow: hidden;
}

.teb-icon1 img {
  height: 49px;
  width: 49px;
  object-fit: contain;
}
.teb-icon2 img {
  height: 69px;
  width: 69px;
  object-fit: contain;
}

/* Text styling */
.teb-text {
  font-family: 'Oswald', Helvetica, Arial, Lucida, sans-serif;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  white-space: nowrap;
  padding: 0 16px;
}

/* Initially, position the whole link so that only the icon is visible */
.teb-float-link {
  transform: translateX(calc(100% - 66px));
}

/* On hover: slide the whole block left to reveal text */
.teb-float-link:hover {
  transform: translateX(0);
}

/* Optional smoother shadow change on hover */
.teb-float-link:hover {
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}










/*

#teb-floating-buttons {
    position: fixed;  
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
   
}



#teb-floating-buttons .teb-float-item {
    text-align: right;
}

#teb-floating-buttons .wp-block-button__link {
    display: inline-block;
    
    border: 2px solid #000;
    padding: 6px 10px;
    text-decoration: none;
	width: 9vw; 
}

#teb-floating-buttons .teb-caption {
    font-size: 12px;
    text-align: right;
}


@media (max-width: 767px) {
    #teb-floating-buttons {
        right: 5px;
    }
    #teb-floating-buttons .wp-block-button__link {
        font-size: 12px;
        padding: 4px 6px;
    }
    #teb-floating-buttons img {
        max-width: 50px;
    }
}


.teb-float-item a{
	color:#666;
	background-color:#FFF;
}

*/