/* custom-styles.css */
.custom-button {
  background-color: #acacacff; /* исходный цвет */
  transition: background-color 0.3s; /* плавное изменение */
}

.custom-button:hover {
  background-color: #5b5b5bff; /* при наведении */
}

