.feather-user {
  width: 24px;
  height: 24px;
}
/* .float-user-btn {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
} */
.float-user-icon-wrapper {
  width: 24px;
  height: 24px;
}
/* .float-user-btn:hover {
  background-color: #0d6efd;
  transform: scale(1.05);
  transition: transform 0.2s ease-in-out;
} */
/*.float-user-btn {
  z-index: 1055;  Higher than Bootstrap modal (1050) */
/* } */
.float-user-btn {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  background-color: rgba(13, 110, 253, 0.2); /* Bootstrap primary with low opacity */
  border: 2px solid rgba(13, 110, 253, 0.4); /* Optional subtle border */
  z-index: 1071; /* Ensure it's above modals */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.float-user-btn:hover {
  background-color: rgba(13, 110, 253, 0.4);
}
   

@media (max-width: 768px) {
  .feather-user {
    width: 20px;
    height: 20px;
  }
}
