/* Plan de contenu — layout 2 colonnes + slots */

#planContent { display: flex; }

.plan-col-left { flex: 0 0 420px; max-height: calc(100vh - 80px); overflow-y: auto; padding-right: 20px; }
.plan-col-right { flex: 1; min-width: 0; }

.plan-week { margin-bottom: 20px; }
.plan-week-title { font-size: 13px; font-weight: 700; color: var(--accent); text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 10px; padding-bottom: 6px; border-bottom: 1px solid var(--border); }

.plan-slot { background: var(--surface); border: 1px solid var(--border); border-radius: 10px;
  padding: 12px 14px; margin-bottom: 8px; cursor: pointer; transition: all .15s; }
.plan-slot:hover { border-color: var(--accent); transform: translateX(2px); }
.plan-slot--active { border-color: var(--accent); background: rgba(43,127,255,0.06);
  box-shadow: 0 0 0 2px rgba(43,127,255,0.15); }
.plan-slot--done { opacity: 0.65; }
.plan-slot--done .plan-slot-status { color: #4caf50; font-weight: 600; }

.plan-slot-day { font-size: 13px; font-weight: 700; color: var(--text); }
.plan-slot-platform { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 2px; }
.plan-slot-idea { font-size: 12px; color: var(--muted2); margin-top: 6px; line-height: 1.4; }
.plan-slot-status { font-size: 10px; color: var(--muted); }

.plan-btn-primary { background: rgba(43,127,255,0.1); border: 1px solid var(--accent); color: var(--accent);
  font-weight: 700; font-size: 13px; padding: 8px 18px; border-radius: 8px; cursor: pointer;
  font-family: inherit; transition: all .15s; }
.plan-btn-primary:hover { background: rgba(43,127,255,0.2); }
.plan-btn-primary:disabled { opacity: 0.5; cursor: wait; }

.plan-btn-sm { font-size: 10px; padding: 4px 10px; border-radius: 5px; border: 1px solid var(--border2);
  background: var(--surface2); color: var(--text); cursor: pointer; font-family: inherit; transition: all .15s; }
.plan-btn-sm:hover { border-color: var(--accent); color: var(--accent); }

.plan-gen-header { padding: 14px; background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; margin-bottom: 12px; }
.plan-gen-idea { padding: 12px; background: var(--surface2); border-radius: 8px;
  font-size: 13px; color: var(--text); line-height: 1.5; }

.plan-gen-result { padding: 14px; background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; font-size: 13px; color: var(--text); line-height: 1.6; max-height: 400px; overflow-y: auto; }

@media (max-width: 768px) {
  #planContent { flex-direction: column; }
  .plan-col-left { flex: none; max-height: none; padding-right: 0; margin-bottom: 20px; }
}
