/* ============================================
   Online Service Float
   ============================================ */
.online-service-float {
  position: fixed;
  right: 16px;
  bottom: 30%;
  z-index: 100;
  width: 60px; /* Adjust based on your actual image size */
  cursor: pointer;
}

.online-service-content {
  width: 100%;
}

.online-service-content img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--primary-orange);
  transition: all 0.3s;
  border-radius: 8px;
}

.online-service-float:hover .online-service-content img {
  border-color: var(--primary-blue);
}

/* Invisible click area over the close icon in the image */
.online-service-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 24px;
  height: 24px;
  cursor: pointer;
  /* border: 1px solid red; /* Uncomment to debug position */
}
