.whatsapp-icon-custom {
  position: fixed;
  bottom: 20px;
  left: 20px;
  /* right: 20px;  */
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.whatsapp-icon-custom:hover {
  background-color: #128C7E;
}

.whatsapp-icon-circle {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.whatsapp-icon-content {
  width: 30px;
  height: 30px;
  background: url('/images/WhatsApp.svg') no-repeat center center;
  background-size: contain;
}

/* Popup List CS */
.cs-list {
  position: fixed;
  bottom: 90px;
  left: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 10px rgba(0,0,0,0.2);
  width: 220px;
  display: none;
  flex-direction: column;
  z-index: 1001;
  overflow: hidden;
}

.cs-item-header {
    background-color: #25D366;
    color: #f5f5f5;
    font-weight: bold;
    font-size: 16px;
    padding: 12px 15px;
    transition: background 0.2s;
}

.cs-item {
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.cs-item:hover {
  background: #f5f5f5;
}

.cs-item:last-child {
  border-bottom: none;
}
