/* Base Container Styles */
.breathe-list-widget {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.breathe-list-container {
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.breathe-list-content-wrapper {
    display: flex;
    height: 100%;
    align-items: flex-start;
    gap: 0;
}

.breathe-list-inner {
    flex: 1;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.breathe-list-inner::-webkit-scrollbar {
    display: none;
}

.breathe-list-items {
    display: flex;
    flex-direction: column;
}

.breathe-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    transform-origin: center;
}

.breathe-list-item-text {
    font-size: 1.8em;
    font-weight: 300;
    transition: all 0.3s ease;
}

.breathe-play-button {
    flex-shrink: 0;
    border: solid;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.breathe-list-item.icon-play .breathe-play-button::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent transparent transparent currentColor;
    margin-left: 3px;
}

.breathe-list-item.icon-arrow .breathe-play-button::before {
    content: '';
    border: none;
}

.breathe-list-item.icon-chevron .breathe-play-button::before {
    content: '';
    border: none;
}

.breathe-list-item.icon-dot .breathe-play-button::before {
    content: '';
    border: none;
}

.breathe-play-button:hover {
    transform: scale(1.1);
}

.custom-scrollbar {
    display: flex;
    align-items: flex-start;
    flex-shrink: 0;
    opacity: 1 !important;
    visibility: visible !important;
    touch-action: none;
}

.custom-scrollbar-track {
    position: relative;
    cursor: pointer;
    touch-action: none;
}

.custom-scrollbar-thumb {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    cursor: grab;
    transition: background-color 0.3s;
    touch-action: none;
}

.custom-scrollbar-thumb:active {
    cursor: grabbing;
}

@media (max-width: 768px) {
    .breathe-list-item-text {
        font-size: 1.4em;
    }
}

@media (max-width: 480px) {
    .breathe-list-item-text {
        font-size: 1.1em;
    }
}
