﻿.phrase-carousel {
    overflow: hidden;
    width: 100%;
    position: relative;
    touch-action: pan-y;
}

.phrase-wrapper {
    position: relative;
    height: 200px; /* Adjust based on your content */
}

.phrase {
    position: absolute;
    width: 100%;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease-out;
    will-change: transform;
}

.controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

/* Hide buttons when swiping */
.swiping .controls {
    opacity: 0;
    transition: opacity 0.2s ease;
}
