.vida-mess-container {
  width: 150px;
  height: 44px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center; /* Изменено с flex-end на center */
}

.vida-mess-icons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.vida-mess-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: transparent;
  border-radius: 0;
}

.vida-mess-icon:hover {
  opacity: 0.8;
}

.vida-mess-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
  .vida-mess-container {
    width: 130px;
    height: 40px;
  }
  
  .vida-mess-icon {
    width: 38px;
    height: 38px;
  }
  
  .vida-mess-icon img {
    width: 38px;
    height: 38px;
  }
  
  .vida-mess-icons {
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .vida-mess-container {
    width: 120px;
    height: 36px;
  }
  
  .vida-mess-icon {
    width: 36px;
    height: 36px;
  }
  
  .vida-mess-icon img {
    width: 36px;
    height: 36px;
  }
  
  .vida-mess-icons {
    gap: 6px;
  }
}