/* --- ESTILOS PARA MAIN.HTML --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body { 
    font-family: 'Inter', sans-serif; 
    background-color: #f7f9fb; 
}

.placeholder { 
    color: #f97316; 
    font-weight: 600; 
    animation: blink 1s step-end infinite; 
}

@keyframes blink { 
    50% { opacity: 0; } 
}

.iframe-container { 
    height: 95vh; 
    min-height: 600px;
    overflow: auto;
    resize: both;
}

.zoom-controls {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000;
    background: white;
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.hidden { display: none; }

.generating { 
    background-color: #d1ecf1 !important; 
    border-color: #0c5460 !important; 
    color: #0c5460 !important; 
}














    











