/**
 * Gorilla Dash Review Carousel Block Editor Styles
 */

.wp-block-gorilladash-review-carousel {
    margin: 20px 0;
}

.gorilladash-review-carousel-editor-preview {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Inspector Controls Styling */
.components-panel__body.is-opened .components-base-control__field {
    margin-bottom: 16px;
}

.components-panel__body.is-opened .components-base-control__help {
    font-size: 12px;
    font-style: italic;
    margin-top: 4px;
}

/* Range Control Custom Styling */
.components-range-control__wrapper {
    width: 100%;
}

/* Toggle Control Custom Styling */
.components-toggle-control {
    margin-bottom: 16px;
}

.components-toggle-control .components-base-control__help {
    margin-top: 4px;
}

/* Preview Card Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gorilladash-review-carousel-editor-preview {
    animation: fadeIn 0.3s ease-in-out;
}
