.st-bb603181-container {
    overflow: hidden;
    padding: 20px; /* Default container padding */
}
.st-bb603181-box {
    opacity: 0;
    transition-property: opacity, transform;
    transition-timing-function: ease-out;
    background: #f9f9f9;
    padding: 30px; /* Default box padding */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

/* Direction variants */
.elementor-widget-slide_testimonial_bb603181.st-bb603181-dir-left .st-bb603181-box {
    transform: translateX(-50px);
}
.elementor-widget-slide_testimonial_bb603181.st-bb603181-dir-right .st-bb603181-box {
    transform: translateX(50px);
}
.elementor-widget-slide_testimonial_bb603181.st-bb603181-dir-up .st-bb603181-box {
    transform: translateY(-50px);
}
.elementor-widget-slide_testimonial_bb603181.st-bb603181-dir-down .st-bb603181-box {
    transform: translateY(50px);
}

.st-bb603181-box.st-bb603181-visible {
    opacity: 1;
    transform: translate(0, 0) !important;
}

.st-bb603181-box.st-bb603181-center-text {
    justify-content: center;
}
.st-bb603181-box.st-bb603181-center-text .st-bb603181-text {
    margin-bottom: 0; /* Remove margin when centered and name is hidden */
}
.st-bb603181-text {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 15px;
    flex-grow: 1; /* Allow text to take up available space if needed */
}
.st-bb603181-name {
    font-weight: bold;
    text-align: right;
    margin-top: auto; /* Push name to bottom if box is taller */
}