/* =========================
POSTALES V3.5
SCROLL EDITOR ESTABLE PC + MOBILE
========================= */

/*
CORRECCIONES:

PC:
- eliminar límite agresivo 65vh
- permitir altura natural
- scroll solo si necesario

SMARTPHONE:
- mantener scroll interno
- mejorar zona escritura

SIN CAMBIAR LAYOUT VALIDADO
*/


/* =========================
PANEL DERECHO
========================= */

.ecard-editor-right{

max-height:none;

overflow-y:auto;

overflow-x:hidden;

padding-right:8px;

}


/* Scroll discreto */

.ecard-editor-right::-webkit-scrollbar{

width:6px;

}

.ecard-editor-right::-webkit-scrollbar-thumb{

background:#bbb;

border-radius:4px;

}


/* =========================
MEJORA PC
========================= */

@media (min-width:900px){

.ecard-editor-right{

max-height:none;

}

.ecard-message{

min-height:160px;

}

}


/* =========================
SMARTPHONE
========================= */

@media (max-width:768px){

.ecard-editor-right{

max-height:80vh;

}

.ecard-message{

min-height:140px;

}

.ecard-editor-right input,
.ecard-editor-right textarea,
.ecard-editor-right select{

margin-bottom:10px;

}

}


/* =========================
MEJORA UX GLOBAL
========================= */

.ecard-editor-right input,
.ecard-editor-right textarea,
.ecard-editor-right select{

width:100%;

box-sizing:border-box;

}


/* textarea más cómoda */

.ecard-message{

resize:vertical;

padding:10px;

line-height:1.4;

}