﻿.fixed-social {
  position: fixed;
  bottom: 20px;     /* cách mép dưới 20px */
  right: 20px;      /* cách mép phải 20px */
  display: flex;
  flex-direction: column; /* xếp theo chiều dọc */
  gap: 10px;        /* khoảng cách giữa các nút */
  z-index: 9999;    /* nằm trên cùng */
}

.fixed-social .social-item {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  /*background-color: #0099ff;*/ /* màu nền xanh dương */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.fixed-social .social-item:hover {
  transform: translateY(-3px);
  background-color: #ff0000; /* đổi màu khi hover */
}

.fixed-social img,
.fixed-social i {
  width: 50px;
  height: 50px;
  color: white;
}
