/*
 * Styles spécifiques au nouveau module Réalité quotidienne.
 *
 * Ces règles n’impactent pas les autres modules et peuvent être
 * chargées indépendamment via un enqueue dans WordPress.
 */

.module-realite {
  margin-top: 1.5rem;
}

.module-realite h3 {
  margin-bottom: 0.5rem;
}

.module-realite .realite-screen {
  margin-bottom: 1.5rem;
}

.module-realite .realite-item {
  margin-bottom: 1rem;
}

.module-realite .choices {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.module-realite .choices button {
  padding: 8px 12px;
  border: 1px solid #111111;
  background: #111111 !important;
  color: #ffffff !important;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  opacity: 1 !important;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.module-realite .choices button:hover {
  background: #2b2b2b !important;
  border-color: #2b2b2b;
}

.module-realite .choices button.selected {
  background: #0e4194 !important;
  color: #ffffff !important;
  border-color: #0e4194 !important;
}

.module-realite .nav-buttons {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 1rem;
}

.module-realite .btn {
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  border: none;
}

.module-realite .btn.primary {
  background: #2563eb;
  color: #fff;
}

.module-realite .btn.secondary {
  background: #e5e7eb;
  color: #111827;
}

.module-realite .choices button.realite-selected{
  outline: 2px solid currentColor;
}