/* * Plugin: DSC Brainstorming
 * Version: 7.1 (Sin botón Back y con Info Panel)
 */

/* =========================================
   ESTILOS DEL ESCRITORIO (Desktop)
   ========================================= */
#dsc-desktop-root { background: #f4f7f9; padding: 25px; border-radius: 15px; font-family: sans-serif; }
.dsc-main-header { display: flex; justify-content: flex-end; margin-bottom: 20px; }
.btn-crear-principal { background: #27ae60; color: white; border: none; padding: 12px 24px; border-radius: 8px; font-weight: bold; cursor: pointer; font-size: 14px; transition: 0.3s; display: flex; align-items: center; gap: 8px; box-shadow: 0 4px 6px rgba(39, 174, 96, 0.2); }
.btn-crear-principal:hover { background: #219150; transform: translateY(-2px); }
.dsc-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; gap: 10px; background: white; padding: 10px; border-radius: 12px; border: 1px solid #eee; }
.dsc-search-wrapper { position: relative; flex-grow: 1; max-width: 400px; }
.dsc-search-wrapper i { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: #aaa; }
.dsc-search-input { width: 100%; padding: 10px 10px 10px 35px; border-radius: 25px; border: 1px solid #ddd; outline: none; font-size: 13px; box-sizing: border-box; }
.dsc-pagination { display: flex; gap: 8px; }
.btn-page { background: #f8f9fa; border: 1px solid #ddd; padding: 8px 16px; border-radius: 20px; cursor: pointer; font-size: 12px; font-weight: bold; color: #2c3e50; transition: 0.2s; }
.btn-page:disabled { opacity: 0.4; cursor: not-allowed; }
.btn-page:hover:not(:disabled) { background: #e2e6ea; }

#dsc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 15px; }

.dsc-card { background: white; border-radius: 12px; border: 1px solid #eee; padding: 15px; height: 260px; display: flex; flex-direction: column; justify-content: space-between; box-sizing: border-box; position: relative; transition: 0.2s; }
.dsc-card:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.dsc-status-badge { position: absolute; top: 15px; right: 15px; padding: 4px 10px; border-radius: 20px; font-size: 10px; font-weight: bold; text-transform: uppercase; }
.status-active { background: #e8f5e9; color: #2e7d32; }
.status-default { background: #eceff1; color: #546e7a; }
.dsc-meta { border-top: 1px solid #f5f5f5; padding-top: 8px; font-size: 11px; display:flex; justify-content:space-between; color:#aaa; align-items: center; }
.btn-abrir { width:100%; background:#2c3e50; color:white; border:none; padding:10px; border-radius:8px; font-weight:bold; cursor:pointer; font-size:11px; margin-top:8px; display:block; text-align:center; text-decoration:none; box-sizing:border-box; transition: 0.3s; }
.btn-abrir:hover { background:#1a252f; color: white; }

/* =========================================
   ESTILOS DEL FRAMEWORK (Sesión individual)
   ========================================= */
#dsc-fw-root { background: #ffffff; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); overflow: hidden; font-family: sans-serif; }

/* Panel Superior (Info de la Junta) */
.fw-meeting-info { padding: 30px 25px; border-bottom: 1px solid #f0f2f5; background: #ffffff; border-radius: 12px 12px 0 0; }
.fw-meeting-title-large { font-size: 1.6em; color: #111827; margin: 0 0 8px 0; font-weight: bold; }
.fw-meeting-objective { font-size: 14px; color: #6b7280; line-height: 1.5; margin: 0; max-width: 800px; }
.fw-meeting-meta { display: flex; gap: 20px; font-size: 13px; color: #9ca3af; margin-top: 15px; align-items: center; }
.fw-meta-item { display: flex; align-items: center; gap: 6px; }
.fw-meta-item i.fa-user-plus { color: #ffa726; }

/* Stepper */
.fw-stepper { display: flex; align-items: flex-start; overflow-x: auto; padding: 30px 20px; background: #fafbfc; border-bottom: 1px solid #f0f2f5; scrollbar-width: none; }
.fw-stepper::-webkit-scrollbar { display: none; }
.fw-step-container { display: flex; align-items: flex-start; }
.fw-step { display: flex; flex-direction: column; align-items: center; width: 100px; position: relative; cursor: pointer; transition: 0.2s; }
.fw-step:hover:not(.locked) { transform: translateY(-2px); }
.fw-icon { width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: #f3f4f6; color: #9ca3af; font-size: 18px; border: 2px solid #e5e7eb; transition: 0.3s; z-index: 2; flex-shrink: 0; }
.fw-label { margin-top: 8px; font-size: 10px; color: #6b7280; font-weight: 600; text-align: center; line-height: 1.3; padding: 0 5px; }

.fw-step.active .fw-icon { background: #4f46e5; color: white; border-color: #4f46e5; box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.15); }
.fw-step.active .fw-label { color: #4f46e5; }
.fw-step.completed .fw-icon { background: #ffffff; color: #10b981; border-color: #10b981; }
.fw-step.completed .fw-icon i { color: #10b981; }
.fw-step.locked { cursor: not-allowed; opacity: 0.5; filter: grayscale(100%); }

.fw-line { height: 2px; background: #e5e7eb; min-width: 30px; margin: 22px 5px 0 5px; }
.fw-canvas { padding: 40px 20px; min-height: 400px; background: #f9fafb; display: flex; justify-content: center; align-items: center; color: #9ca3af; flex-direction: column; }