/**
 * IBE Teaser Plugin Styles
 * Version: 1.0.0
 * 
 * Minimales Styling - API liefert eigenes HTML mit Styles
 */

/* Container */
.ibe-teaser-container {
    margin: 20px 0;
    clear: both;
}

/* Loading State */
.ibe-teaser-loading {
    padding: 40px 20px;
    text-align: center;
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
}

.ibe-teaser-loading::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #ddd;
    border-top-color: #333;
    border-radius: 50%;
    animation: ibe-teaser-spin 0.8s linear infinite;
}

@keyframes ibe-teaser-spin {
    to { transform: rotate(360deg); }
}

/* Error State */
.ibe-teaser-error {
    padding: 20px;
    background: #fee;
    border: 1px solid #fcc;
    border-radius: 4px;
    color: #c33;
    margin: 20px 0;
}

.ibe-teaser-error strong {
    display: block;
    margin-bottom: 5px;
}

/* Empty State */
.ibe-teaser-empty {
    padding: 40px 20px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #666;
    text-align: center;
    margin: 20px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .ibe-teaser-container {
        margin: 15px 0;
    }
}