.custom-carousel-arrow {
    background: none;
    border: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-carousel-arrow svg {
    transition: transform 0.2s ease, stroke 0.2s ease;
}

.custom-carousel-arrow:hover svg {
    transform: scale(1.2);
    stroke: #cc2f3b;
}
