.chaty-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.chaty-button {
  background-color: var(--chaty-color, #ea1db0);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.chaty-channel-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  bottom: 70px;
  right: 0;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.chaty-widget.active .chaty-channel-list {
  opacity: 1;
  pointer-events: all;
  transform: translateY(-10px);
}

.chaty-channel-list a {
  margin: 8px 0;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  text-decoration: none;
  font-size: 20px;
}

.chaty-align-left { left: 20px; right: auto; }
.chaty-align-right { right: 20px; left: auto; }


  position: fixed;
  bottom: 100px;
  right: 30px;
  background: #ffffff;
  color: #333;
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  
  opacity: 0;
  z-index: 9999;
  font-family: IRANSans, Tahoma, sans-serif;
}

to {
    transform: translateY(0px);
    opacity: 1;
  }
}

