#portadaApp {
    font-family: Arial, sans-serif;
    color: #000; /* fuerza color negro solo dentro */
    background: #f0f0f0;
    display: flex;
    justify-content: center;
    padding: 20px;
}

#portadaApp .container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 900px;
    width: 100%;
}

#portadaApp label {
    display: block;
    margin-top: 10px;
}

#portadaApp input,
#portadaApp select,
#portadaApp button {
    margin-top: 5px;
    padding: 5px;
    width: 100%;
}

#portadaApp #previewContainer {
    margin-top: 20px;
    border: 2px solid #ccc;
    width: 793px;
    height: 1123px;
}

#portadaApp canvas {
    width: 100%;
    height: 100%;
}
/* Fuente Kawaii RT Shine */
@font-face {
    font-family: 'Kawaii RT Shine';
    src: url('https://tecpro-digital.com/wp-content/uploads/2025/09/fuente/kawaii-rt-mona-shine.otf') format('opentype');
}

@font-face {
    font-family: 'Berthold Block';
    src: url('https://tecpro-digital.com/wp-content/uploads/2025/09/fuente/berthold-block.otf') format('opentype');
}

#portadaApp select.scrollable-select {
    max-height: 200px; /* limita altura */
    overflow-y: auto;
    display: block;
}

#portadaApp .iframe-container {
    display: flex;
    justify-content: center; /* centra horizontal */
    align-items: center;     /* centra vertical (opcional) */
    padding: 20px;           /* espacio alrededor */
}