/* Estilos limpios y modernos. Puedes reemplazar por Tailwind si prefieres. */
*{box-sizing:border-box;font-family:Inter,Segoe UI,Roboto,Arial,sans-serif}
body{background:#f5f7fb;color:#111;margin:0;padding:24px}
.container{max-width:980px;margin:0 auto;background:#fff;padding:24px;border-radius:12px;box-shadow:0 6px 30px rgba(30,41,59,0.06)}
.header{display:flex;align-items:center;gap:12px;margin-bottom:18px}
.logo{width:56px;height:56px;background:#0ea5a4;border-radius:10px;display:flex;align-items:center;justify-content:center;color:#fff;font-weight:700}
h1{margin:0;font-size:20px}
.form-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}
.form-row{display:flex;flex-direction:column}
label{font-size:12px;margin-bottom:6px;color:#374151}
input[type="text"],input[type="email"],input[type="number"],select{padding:10px;border-radius:8px;border:1px solid #e6eef6;background:#fbfdff}
input[type="file"]{padding:6px}
.actions{display:flex;gap:8px;margin-top:12px}
.btn{padding:10px 14px;border-radius:10px;border:0;cursor:pointer}
.btn-primary{background:#0ea5a4;color:#fff}
.btn-ghost{background:#eef2ff;color:#1f2937}
.preview-card{border:1px dashed #e6eef6;padding:12px;border-radius:10px;margin-top:12px}
img.preview-img{max-width:180px;border-radius:8px;display:block;margin-bottom:8px}
.table{width:100%;border-collapse:collapse;margin-top:12px}
.table th,.table td{padding:8px;border-bottom:1px solid #eef2ff;text-align:left}
@media (max-width:800px){.form-grid{grid-template-columns:1fr}}