.mwcm *{margin:0;padding:0;box-sizing:border-box}.mwcm{
    font-family:'Segoe UI',Tahoma,Geneva,Verdana,sans-serif;
    background:linear-gradient(135deg,#667eea 0%,#764ba2 100%);
    min-height:100vh;
    padding:20px;
  }.mwcm /* ---------- Tipografía / inputs más legibles ---------- */
  label{ color:#222; }.mwcm input, .mwcm select{
    color:#111 !important;
    background:#fff;
  }.mwcm input::placeholder{
    color:#7a7a7a;
    opacity:1;
  }.mwcm /* ---------- LOGIN ---------- */
  .login-container{
    max-width:420px;margin:90px auto;background:#fff;padding:40px;border-radius:16px;
    box-shadow:0 10px 40px rgba(0,0,0,.2);
  }.mwcm .login-container h2{text-align:center;color:#5a4ba2;margin-bottom:26px;line-height:1.1}.mwcm .form-group{margin-bottom:18px}.mwcm .form-group label{display:block;margin-bottom:6px;font-weight:700}.mwcm .form-group input, .mwcm .form-group select{
    width:100%;padding:12px 14px;border:2px solid #e0e0e0;border-radius:10px;font-size:14px;
    transition:border-color .25s, box-shadow .25s;
  }.mwcm .form-group input:focus, .mwcm .form-group select:focus{
    outline:none;border-color:#7c5cdb;box-shadow:0 0 0 3px rgba(124,92,219,.15);
  }.mwcm /* ---------- Botones consistentes ---------- */
  .btn{
    width:100%;
    height:52px;
    padding:0 16px;
    border:none;border-radius:12px;
    font-size:16px;font-weight:800;
    cursor:pointer;
    transition:transform .15s, box-shadow .15s, filter .15s;
    display:inline-flex;align-items:center;justify-content:center;
    background:linear-gradient(135deg,#667eea 0%,#764ba2 100%);
    color:#fff;
  }.mwcm .btn:hover{transform:translateY(-2px);box-shadow:0 6px 20px rgba(0,0,0,.2)}.mwcm .btn-secondary{
    background:rgba(0,0,0,.08);
    color:#111;
  }.mwcm .btn-danger{
    background:#ef4444;color:#fff;
  }.mwcm .btn-mini{
    height:44px;
    padding:0 14px;border-radius:12px;
    background:rgba(255,255,255,.20);
    color:#fff;
    border:1px solid rgba(255,255,255,.35);
    cursor:pointer;font-weight:900;font-size:14px;
    display:inline-flex;align-items:center;justify-content:center;
  }.mwcm .btn-mini:hover{background:rgba(255,255,255,.28)}.mwcm /* ---------- HEADER ---------- */
  .header{
    background:linear-gradient(135deg,#3d4a7a 0%,#5a4ba2 100%);
    padding:20px 40px;border-radius:16px;margin-bottom:20px;
    display:flex;justify-content:space-between;align-items:center;
    box-shadow:0 5px 20px rgba(0,0,0,.2);
  }.mwcm .header-title{color:#fff;font-size:32px;font-weight:900}.mwcm .header-subtitle{color:rgba(255,255,255,.9);font-size:22px;font-weight:400}.mwcm .header-actions{display:flex;gap:12px;align-items:center}.mwcm .btn-crear{
    height:48px;
    background:linear-gradient(135deg,#7c5cdb 0%,#a855f7 100%);
    color:#fff;padding:0 18px;border:none;border-radius:12px;
    font-size:15px;font-weight:900;cursor:pointer;
  }.mwcm .btn-logout{
    height:48px;
    background:rgba(255,255,255,.15);
    color:#fff;padding:0 16px;border:2px solid rgba(255,255,255,.45);
    border-radius:12px;cursor:pointer;font-weight:800;
  }.mwcm /* ---------- LAYOUT (2 columnas) ---------- */
  .main-container{
    display:grid;
    grid-template-columns:320px 1fr;
    gap:20px;
    height:calc(100vh - 190px);
  }.mwcm .column{
    background:rgba(255,255,255,.95);
    border-radius:16px;
    padding:20px;
    overflow-y:auto;
    box-shadow:0 5px 20px rgba(0,0,0,.1);
  }.mwcm .column-title{
    background:#e0e0e0;padding:14px;border-radius:12px;
    text-align:center;font-size:18px;font-weight:900;margin-bottom:18px;color:#333;
  }.mwcm /* ---------- CLIENTES ---------- */
  .client-card{
    background:linear-gradient(135deg,#7c5cdb 0%,#a855f7 100%);
    color:#fff;padding:16px;border-radius:12px;margin-bottom:12px;
    cursor:pointer;transition:all .25s;position:relative;
    box-shadow:0 10px 20px rgba(0,0,0,.12);
  }.mwcm .client-card:hover{transform:translateX(5px)}.mwcm .client-card.active{
    background:linear-gradient(135deg,#5a4ba2 0%,#7c5cdb 100%);
    box-shadow:0 10px 22px rgba(0,0,0,.22);
  }.mwcm .client-name{
    font-weight:900;font-size:16px;margin-bottom:10px;
    display:inline-block;
    cursor:pointer;
    text-decoration:none;
  }.mwcm .client-name:hover{filter:brightness(1.05);text-decoration:underline}.mwcm .client-services{
    display:flex;
    flex-direction:column;
    gap:10px;
    padding-top:12px;
    border-top:1px solid rgba(255,255,255,.25);
  }.mwcm /* Botones de servicio simétricos */
  .service-btn{
    width:100%;
    height:48px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,.25);
    background:rgba(255,255,255,.18);
    color:#fff;
    font-size:15px;
    font-weight:900;
    cursor:pointer;
    transition:transform .12s, background .2s;
    display:flex;align-items:center;justify-content:center;
    text-align:center;
  }.mwcm .service-btn:hover{transform:translateY(-1px);background:rgba(255,255,255,.25)}.mwcm .service-btn.active{
    background:rgba(255,255,255,.35);
    border-color:rgba(255,255,255,.45);
  }.mwcm /* ---------- PANEL CENTRAL ---------- */
  .service-panel{
    background:linear-gradient(135deg,#7c5cdb 0%,#a855f7 100%);
    color:#fff;padding:22px;border-radius:14px;margin-bottom:20px;
  }.mwcm .service-panel-header{
    display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:14px;
  }.mwcm .service-panel h3{font-size:22px;margin:0;font-weight:900;letter-spacing:.4px}.mwcm .process-table{
    background:#fff;border-radius:14px;overflow:hidden;margin-top:10px;
    box-shadow:inset 0 0 0 1px rgba(0,0,0,.06);
  }.mwcm /* TABLA 35% / 45% / 20% */
  .table-header, .mwcm .table-row{
    display:grid;
    grid-template-columns:0.35fr 0.45fr 0.20fr;
  }.mwcm .table-header{
    background:#3d4a7a;color:#fff;font-weight:900;padding:14px;font-size:18px;
  }.mwcm .table-row{
    padding:14px;border-bottom:1px solid #e7e7e7;background:#f7f2ff;cursor:pointer;
  }.mwcm .table-row:hover{background:#efe6ff}.mwcm .table-cell{
    padding:6px 10px;color:#222;font-size:18px;line-height:1.55;
  }.mwcm /* STATUS TAGS */
  .status-tag{
    display:inline-block;
    padding:6px 10px;
    border-radius:10px;
    font-size:14px;
    font-weight:900;
    min-width:110px;
    text-align:center;
  }.mwcm .status-pendiente{background:#ef4444;color:#fff}.mwcm .status-en-proceso{background:#fbbf24;color:#78350f}.mwcm .status-listo{background:#22c55e;color:#052e16}.mwcm /* ---------- MODALES ---------- */
  .modal{
    display:none;position:fixed;top:0;left:0;width:100%;height:100%;
    background:rgba(0,0,0,.68);z-index:1000;
    justify-content:center;align-items:center;
    padding:22px;
  }.mwcm .modal.active{display:flex}.mwcm .modal-content{
    background:#fff;border-radius:18px;
    width:min(860px, 96vw);
    max-height:86vh;
    overflow:auto;
    padding:34px;
  }.mwcm .modal-content h2{
    color:#5a4ba2;
    font-size:48px;
    line-height:1.05;
    margin-bottom:18px;
    font-weight:900;
  }.mwcm .checkbox-group{margin-top:10px}.mwcm .checkbox-item{display:flex;align-items:center;margin-bottom:10px}.mwcm .checkbox-item input{width:20px;height:20px;margin-right:10px}.mwcm .subsection-title{
    font-weight:900;color:#3d4a7a;margin:16px 0 10px;font-size:18px;
  }.mwcm /* Lista (Creativos/Etapas) con estado por fila */
  .row-list{
    display:grid;
    grid-template-columns:1fr 200px 50px;
    gap:12px;
    align-items:center;
    margin-bottom:10px;
  }.mwcm .row-list input, .mwcm .row-list select{
    height:48px;
    border-radius:12px;
    border:2px solid #e0e0e0;
    padding:0 14px;
    font-size:15px;
    font-weight:700;
  }.mwcm .row-remove{
    width:50px;height:48px;border-radius:14px;
    border:none;background:linear-gradient(135deg,#4aa3ff 0%, #8de7ff 100%);
    color:#111;font-weight:1000;font-size:18px;cursor:pointer;
  }.mwcm .row-remove:hover{filter:brightness(.97)}.mwcm /* Footer botones simétricos */
  .modal-footer{
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    gap:12px;
    margin-top:16px;
  }.mwcm .modal-footer.two{
    grid-template-columns:1fr 1fr;
  }.mwcm .hidden{display:none}


/* === Overrides / mejoras solicitadas === */
.mwcm label{ color:#5b4bb7 !important; font-weight:800 !important; }
.mwcm .form-label, .mwcm .section-title, .mwcm .subtitle, .mwcm .hint{ color:#5b4bb7 !important; }
.mwcm input, .mwcm select, .mwcm textarea{ color:#111827 !important; }
.mwcm input::placeholder, .mwcm textarea::placeholder{ color:#94a3b8 !important; opacity:1; }

.mwcm .table-header, .mwcm .table-row{ display:grid; grid-template-columns: 35% 45% 20%; gap:16px; align-items:start; }
.mwcm .status-line, .mwcm .creative-line{ display:flex; align-items:center; gap:10px; margin:0 0 10px 0; }
.mwcm .status-num, .mwcm .creative-num{ min-width: 26px; font-weight:800; color:#111827; }
.mwcm .status-tag{ display:inline-flex; align-items:center; justify-content:center; white-space:nowrap; }

.mwcm .row-actions{ display:flex; align-items:center; gap:8px; }
.mwcm .icon-btn{ border:0; background: rgba(120,180,255,.25); padding:8px 10px; border-radius:12px; cursor:pointer; }
.mwcm .icon-btn:hover{ filter:brightness(0.98); }
.mwcm .icon-btn:disabled{ opacity:.5; cursor:not-allowed; }

@media (max-width: 1024px){
  .mwcm .app-container{ grid-template-columns: 1fr !important; }
  .mwcm .sidebar{ margin-bottom: 18px; }
  .mwcm .table-header, .mwcm .table-row{ grid-template-columns: 1fr; }
}
@media (max-width: 600px){
  .mwcm .top-actions{ flex-direction: column; gap:10px; }
  .mwcm .top-actions button{ width:100%; }
}
