.custom-grey {
    fill: #f4f4f4;
    /* Example of a custom grey color */
}

.button-arrow {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 10px 15px;
    /* Add some padding for a better look */
    border-radius: 5px;
    /* Optional: round the corners */
    background-color: transparent;
    /* Default background */
    transition: background-color 0.3s ease, transform 0.3s ease;
    /* Transition for background and scale */
}


.button-arrow:hover {
    /* Change background color on hover */
    transform: scale(1.25);
    /* Scale the entire button */
}