/* Floating WhatsApp Button */
.wa-floating {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.wa-main-btn {
  width: 70px;
  height: 70px;
  /* background-color: #25d366; */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5); */
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  border: none;
}

.wa-main-btn:hover {
  transform: scale(1.1);
  /* box-shadow: 0 6px 25px rgba(37, 211, 102, 0.7); */
}

.wa-main-btn i {
  font-size: 32px;
  color: white;
}

/* .wa-main-btn.active {
  transform: rotate(45deg);
} */

.admin-list {
  position: absolute;
  bottom: 85px;
  right: 0;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  width: 280px;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.admin-list.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.admin-list h3 {
  color: #25d366;
  margin-bottom: 15px;
  text-align: center;
  font-size: 1.3rem;
}

.admin-item {
  display: flex;
  align-items: center;
  padding: 12px;
  margin-bottom: 12px;
  background-color: #f9f9f9;
  border-radius: 10px;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.admin-item:hover {
  background-color: #e8f7ed;
  transform: translateX(-5px);
}

.admin-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #d4f3df;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  overflow: hidden;
}

.admin-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-avatar i {
  font-size: 24px;
  color: #25d366;
}

.admin-info {
  flex: 1;
}

.admin-name {
  font-weight: 600;
  color: #333;
  margin-bottom: 3px;
}

.admin-role {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 5px;
}

.admin-status {
  display: flex;
  align-items: center;
  font-size: 0.8rem;
}

.status-online {
  color: #25d366;
  font-weight: 600;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: #25d366;
  border-radius: 50%;
  margin-right: 6px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 20px;
    margin: 10px;
  }

  .wa-floating {
    bottom: 100px;
    right: 20px;
  }

  .wa-main-btn {
    width: 60px;
    height: 60px;
  }

  .admin-list {
    width: 260px;
    right: -10px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }

  .wa-floating {
    bottom: 100px;
    right: 15px;
  }

  .wa-main-btn {
    width: 55px;
    height: 55px;
  }

  .admin-list {
    width: 250px;
    padding: 15px;
  }

  .admin-item {
    padding: 10px;
  }
}

footer {
  text-align: center;
  color: #888;
  font-size: 0.9rem;
  margin-top: 20px;
}
