/**
 * MugDe – Stylesheet für die V1-Vorschaubühne
 */

.mugde-stage {
    display:        inline-block;
    position:       relative;
    line-height:    0;          /* kein Baseline-Gap unter dem Canvas */
    user-select:    none;
}

.mugde-canvas {
    display:        block;
    max-width:      100%;
    height:         auto;
    border-radius:  4px;
}

.mugde-label {
    margin:         6px 0 0;
    font-size:      12px;
    color:          #666;
    text-align:     center;
    line-height:    1.4;
}

/* Debug-Overlay (aktivierbar per JS mit data-debug="true") */
.mugde-debug .mugde-overlay-print  { outline: 2px dashed rgba(255, 80, 80, 0.7); }
.mugde-debug .mugde-overlay-front  { outline: 2px solid rgba(0, 130, 255, 0.6); }
.mugde-debug .mugde-overlay-motif  { outline: 2px dotted rgba(0, 180, 0, 0.7); }
