/* edenauditowp — audit WordPress + recommandations IA */

.edenauditowp-float-window {
  position: fixed;
  background: #0e1116;
  color: #d8e0e8;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  border: 1px solid #2a2f38;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.55);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.edenauditowp-float-window.edenauditowp-maximized { border-radius: 0; }
.edenauditowp-float-titlebar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 10px;
  background: linear-gradient(180deg, #161b22 0%, #10141a 100%);
  border-bottom: 1px solid #2a2f38;
  user-select: none; cursor: move;
}
.edenauditowp-float-titlebar-left { display: flex; align-items: center; gap: 8px; }
.edenauditowp-float-title { font-size: 13px; font-weight: 600; color: #5ddc9a; letter-spacing: 0.2px; }
.edenauditowp-float-tag { font-size: 10px; color: #8a93a0; padding: 2px 6px; background: #1a1f27; border-radius: 4px; }
.edenauditowp-float-body { flex: 1; overflow: auto; padding: 0; display: flex; flex-direction: column; }

.eaw-tabs { display: flex; gap: 0; border-bottom: 1px solid #2a2f38; background: #0a0d12; }
.eaw-tab {
  padding: 10px 18px; font-size: 12.5px; cursor: pointer;
  background: transparent; color: #8a93a0; border: 0;
  border-bottom: 2px solid transparent; transition: color .12s, border-color .12s;
  font-family: inherit;
}
.eaw-tab:hover { color: #d8e0e8; }
.eaw-tab.active { color: #5ddc9a; border-bottom-color: #5ddc9a; }

.eaw-pane { padding: 14px 16px; overflow: auto; }

/* Sites pane */
.eaw-site-card {
  background: #161b22; border: 1px solid #2a2f38; border-radius: 6px;
  padding: 10px 12px; margin-bottom: 8px;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  cursor: pointer; transition: border-color .12s;
}
.eaw-site-card:hover { border-color: #5ddc9a; }
.eaw-site-card.active { border-color: #5ddc9a; background: #1a2129; }
.eaw-site-card-left { flex: 1; min-width: 0; }
.eaw-site-card-name { font-weight: 600; color: #d8e0e8; font-size: 13px; }
.eaw-site-card-url { font-size: 11px; color: #8a93a0; word-break: break-all; }
.eaw-site-card-meta { font-size: 11px; color: #5f6877; margin-top: 4px; }
.eaw-site-card-actions { display: flex; gap: 4px; flex-shrink: 0; }

.eaw-form { display: grid; gap: 10px; margin-top: 14px; padding: 12px; background: #0a0d12; border: 1px dashed #2a2f38; border-radius: 6px; }
.eaw-row { display: flex; flex-direction: column; gap: 4px; }
.eaw-label { font-size: 11.5px; color: #8a93a0; font-weight: 500; }
.eaw-help  { font-size: 10.5px; color: #5f6877; line-height: 1.4; }
.eaw-input, .eaw-textarea, .eaw-select {
  background: #161b22; color: #d8e0e8; border: 1px solid #2a2f38;
  border-radius: 6px; padding: 7px 10px; font-size: 12.5px;
  font-family: inherit; outline: none; transition: border-color .15s;
}
.eaw-input:focus, .eaw-textarea:focus, .eaw-select:focus { border-color: #5ddc9a; }
.eaw-textarea { resize: vertical; min-height: 60px; font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 12px; }

.eaw-btn {
  background: #5ddc9a; color: #0e1116; font-weight: 600;
  border: 0; border-radius: 6px; padding: 8px 14px;
  font-size: 12.5px; cursor: pointer; transition: filter .12s;
  font-family: inherit;
}
.eaw-btn:hover { filter: brightness(1.08); }
.eaw-btn:disabled { background: #2a2f38; color: #5f6877; cursor: not-allowed; filter: none; }
.eaw-btn-secondary { background: transparent; color: #8a93a0; border: 1px solid #2a2f38; }
.eaw-btn-secondary:hover { color: #d8e0e8; border-color: #3a414c; filter: none; }
.eaw-btn-danger { background: #ff6b6b; color: #fff; }
.eaw-btn-mini { padding: 3px 8px; font-size: 10.5px; border-radius: 4px; }

.eaw-actions { display: flex; gap: 8px; align-items: center; margin-top: 6px; flex-wrap: wrap; }

.eaw-status {
  margin-top: 12px; padding: 9px 12px;
  background: #161b22; border: 1px solid #2a2f38;
  border-radius: 6px; font-size: 11.5px; color: #8a93a0;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
}
.eaw-status.eaw-status-ok  { border-color: #3d6b3d; color: #b6e0b6; }
.eaw-status.eaw-status-err { border-color: #6b3d3d; color: #e0b6b6; }
.eaw-status.eaw-status-busy{ border-color: #6b5d3d; color: #e0d6b6; }

.eaw-stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 8px; margin-top: 10px;
}
.eaw-stat-card {
  background: #161b22; border: 1px solid #2a2f38; border-radius: 6px;
  padding: 10px 12px;
}
.eaw-stat-label { font-size: 10.5px; color: #8a93a0; text-transform: uppercase; letter-spacing: 0.5px; }
.eaw-stat-value { font-size: 22px; font-weight: 700; color: #5ddc9a; margin-top: 4px; }

.eaw-recommend-result {
  margin-top: 14px; padding: 12px;
  background: #0a0d12; border: 1px solid #2a2f38; border-radius: 6px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 11.5px;
  line-height: 1.5; max-height: 400px; overflow: auto; white-space: pre-wrap;
}

.eaw-empty { color: #5f6877; font-style: italic; padding: 20px; text-align: center; }
