.meta-carousel-preview {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    max-width: 700px;
    margin: 20px auto;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.meta-carousel-preview .primary-text {
    font-size: 16px;
    margin-bottom: 15px;
}
.carousel-container {
    display: flex;
    overflow-x: auto;
    gap: 10px;
}
.carousel-slide {
    min-width: 200px;
    background: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px;
    flex: 0 0 auto;
    text-align: center;
}
.carousel-image {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 10px;
}
.carousel-placeholder {
    width: 100%;
    height: 200px;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    border-radius: 6px;
    margin-bottom: 10px;
}
.carousel-caption {
    font-weight: bold;
    margin-bottom: 10px;
}
.carousel-cta-button {
    display: inline-block;
    padding: 8px 12px;
    background-color: #1877f2;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
}
.carousel-cta-button:hover {
    background-color: #145db2;
}
