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

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