* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #111827;
  background:
    radial-gradient(circle at 10% 4%, rgba(255, 90, 95, 0.14), transparent 28%),
    radial-gradient(circle at 92% 8%, rgba(23, 195, 178, 0.14), transparent 26%),
    linear-gradient(180deg, #fff8f1 0%, #f7fbff 45%, #eef6ff 100%);
}

/* HEADER */

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(8px);
}

.topbar-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #111827;
  font-size: 34px;
  font-weight: 950;
  letter-spacing: -0.8px;
  white-space: nowrap;
}

.brand-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: white;
  font-size: 23px;
  background: linear-gradient(135deg, #ff5a5f, #2563eb);
  box-shadow: 0 12px 26px rgba(255, 90, 95, 0.24);
}

.main-nav {
  display: none;
}

.search-box {
  display: flex;
  align-items: center;
  justify-self: end;
  width: 100%;
  max-width: 620px;
  padding: 0 14px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(255, 90, 95, 0.22);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
  cursor: text;
}

.search-box input {
  width: 100%;
  padding: 14px 8px;
  border: none;
  outline: none;
  font-size: 15px;
  background: transparent;
}

.search-box span {
  font-size: 22px;
  opacity: 0.65;
  pointer-events: none;
  cursor: default;
}

.login-button {
  display: none !important;
}

/* HERO */

.hero {
  min-height: 500px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.80) 0%, rgba(15, 23, 42, 0.55) 44%, rgba(15, 23, 42, 0.10) 100%),
    url("./hero-train.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero::before,
.hero::after,
.hero-content::before,
.hero-content::after {
  display: none;
}

.hero-overlay {
  min-height: 500px;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 84px 24px;
  color: white;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 90, 95, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #fff7ed;
  font-size: 14px;
  font-weight: 800;
}

.hero h1 {
  max-width: 860px;
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 60px;
  line-height: 1.05;
  letter-spacing: -1.8px;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.48);
}

.hero p {
  max-width: 760px;
  margin: 0;
  color: #fff7ed;
  font-size: 22px;
  line-height: 1.45;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.35);
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.primary-link,
.secondary-link {
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 14px;
  font-weight: 800;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.primary-link {
  background: linear-gradient(135deg, #ff5a5f, #e83e8c);
  color: white;
  box-shadow: 0 18px 38px rgba(232, 62, 140, 0.32);
}

.secondary-link {
  background: rgba(255, 255, 255, 0.96);
  color: #111827;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.24);
}

.primary-link:hover,
.secondary-link:hover {
  transform: translateY(-1px);
  opacity: 0.96;
}

/* INTRO */

.intro-section {
  max-width: 1180px;
  margin: -38px auto 34px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  position: relative;
  z-index: 2;
}

.intro-card {
  position: relative;
  overflow: hidden;
  min-height: auto;
  padding: 22px;
  border: none;
  border-radius: 24px;
  cursor: default;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.11);
}

.intro-card:hover {
  transform: none;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.11);
}

.intro-card::after {
  content: "";
  position: absolute;
  right: -36px;
  top: -36px;
  width: 115px;
  height: 115px;
  border-radius: 999px;
  opacity: 0.18;
}

.intro-card:nth-child(1) {
  background: linear-gradient(135deg, #fff1f2 0%, #ffffff 72%);
}

.intro-card:nth-child(1)::after {
  background: #ff5a5f;
}

.intro-card:nth-child(2) {
  background: linear-gradient(135deg, #fdf2f8 0%, #ffffff 72%);
}

.intro-card:nth-child(2)::after {
  background: #e83e8c;
}

.intro-card:nth-child(3) {
  background: linear-gradient(135deg, #ecfeff 0%, #ffffff 72%);
}

.intro-card:nth-child(3)::after {
  background: #17c3b2;
}

.intro-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  color: white;
  font-size: 28px;
  box-shadow: 0 12px 22px rgba(15, 23, 42, 0.16);
}

.intro-card:nth-child(1) .intro-icon {
  background: linear-gradient(135deg, #ff5a5f, #ff8c42);
}

.intro-card:nth-child(2) .intro-icon {
  background: linear-gradient(135deg, #e83e8c, #8b5cf6);
}

.intro-card:nth-child(3) .intro-icon {
  background: linear-gradient(135deg, #17c3b2, #2563eb);
}

.intro-card h3 {
  margin: 0 0 8px;
  color: #111827;
  font-size: 22px;
}

.intro-card p {
  margin: 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.48;
}

.intro-card:nth-child(3) p::after {
  content: none;
  display: none;
}

/* SECTIONS */

.content-section {
  max-width: 1180px;
  margin: 44px auto;
  padding: 0 24px;
}

.section-header {
  margin-bottom: 28px;
}

.section-header h2 {
  margin: 0 0 8px;
  color: #111827;
  font-size: 36px;
  letter-spacing: -0.8px;
}

.section-header h2::after {
  content: "";
  display: block;
  width: 78px;
  height: 4px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff5a5f, #e83e8c, #2563eb);
}

.section-header p {
  margin: 0;
  color: #475569;
  font-size: 16px;
}

.empty-state {
  background: white;
  border-radius: 16px;
  padding: 20px;
  color: #6b7280;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.reports-list {
  display: grid;
  gap: 28px;
}

/* CARTES REPORTS */

.report-card {
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 90, 95, 0.20), transparent 24%),
    radial-gradient(circle at 12% 88%, rgba(37, 99, 235, 0.18), transparent 24%),
    linear-gradient(135deg, #061326 0%, #101827 58%, #111827 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.report-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 76px rgba(15, 23, 42, 0.34);
}

.report-summary {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 24px;
  padding: 22px;
  align-items: stretch;
}

.summary-cover {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  border-radius: 22px;
  background: #e5e7eb;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.summary-cover-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 54px;
  background: linear-gradient(135deg, #edf4ff, #dbeafe);
}

.summary-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.summary-info::before {
  display: none;
  content: none;
}

.summary-info h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.4px;
}

.report-meta {
  margin: 0 0 10px;
  color: #d1d5db;
  line-height: 1.65;
  font-size: 15px;
}

.report-meta strong {
  color: #ffffff;
}

.rating {
  font-size: 21px;
  margin: 10px 0;
}

.summary-info .rating {
  display: inline-block;
  align-self: flex-start;
  margin: 8px 0 10px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 18px;
  color: white;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.open-report-button {
  align-self: flex-start;
  margin-top: 12px;
  padding: 12px 18px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  color: white;
  font-weight: 800;
  background: linear-gradient(135deg, #ff5a5f, #2563eb);
  box-shadow: 0 16px 32px rgba(255, 90, 95, 0.26);
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.open-report-button:hover {
  opacity: 0.96;
  transform: translateY(-1px);
}

/* REPORT OUVERT */

.report-details {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-top: 1px solid #e5e7eb;
}

.hidden {
  display: none;
}

.report-content {
  padding: 34px;
}

.report-section {
  overflow: hidden;
  margin-top: 30px;
  padding: 24px 24px 28px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid #e0ecff;
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
}

.report-section h4 {
  margin: 0 0 16px;
  color: #082f52;
  font-size: 22px;
  letter-spacing: -0.2px;
}

.report-section h4::before {
  content: "▸ ";
  color: #ff5a5f;
}

.report-section p {
  max-width: 700px;
  margin: 18px auto 0;
  padding: 14px 16px;
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  color: #334155;
  font-size: 16px;
  line-height: 1.7;
}

.section-photo {
  display: block;
  width: auto;
  max-width: min(760px, 100%);
  max-height: 460px;
  object-fit: contain;
  margin: 14px auto 24px;
  background: #f8fafc;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

/* CARTE DU TRAJET */

.route-card {
  position: relative;
  overflow: hidden;
  margin-bottom: 28px;
  padding: 22px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(255, 90, 95, 0.12), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #eef8ff 100%);
  border: 1px solid rgba(37, 99, 235, 0.22);
  box-shadow: 0 12px 28px rgba(29, 78, 216, 0.08);
}

.route-card::before {
  display: none;
  content: none;
}

.route-card h4 {
  margin: 0 0 18px;
  color: #082f52;
  font-size: 22px;
}

.route-cities {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
  margin-bottom: 20px;
}

.city {
  width: 42%;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #dbeafe;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.04);
}

.city.city-end {
  text-align: right;
}

.city-name {
  display: block;
  color: #0f172a;
  font-weight: 800;
  font-size: 18px;
  line-height: 1.35;
}

.city-role {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #e11d48;
  font-size: 13px;
  font-weight: bold;
  background: #fff1f2;
  border: 1px solid #fecdd3;
}

.route-track {
  position: relative;
  height: 72px;
  margin-top: 10px;
}

.route-line {
  position: absolute;
  left: 22px;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  height: 28px;
  border-radius: 999px;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0 14px,
      #9a6b3a 14px 18px,
      #7b5230 18px 24px,
      transparent 24px 42px
    );
}

.route-line::before,
.route-line::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #3b82f6, #2563eb);
  box-shadow: 0 2px 5px rgba(37, 99, 235, 0.18);
}

.route-line::before {
  top: 5px;
}

.route-line::after {
  bottom: 5px;
}

.route-track::before,
.route-track::after {
  content: "";
  position: absolute;
  top: 23px;
  width: 18px;
  height: 18px;
  border: 4px solid #1d4ed8;
  border-radius: 50%;
  background: white;
  box-shadow: 0 4px 10px rgba(29, 78, 216, 0.14);
  z-index: 2;
}

.route-track::before {
  left: 0;
}

.route-track::after {
  right: 0;
}

.route-train {
  position: absolute;
  top: 50%;
  left: 14%;
  width: 130px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -56%);
  pointer-events: none;
  z-index: 3;
  will-change: left, opacity;
  animation: train-glide 6s linear infinite;
}

.tgv-icon {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 5px 10px rgba(16, 38, 84, 0.18));
}

@keyframes train-glide {
  0% {
    left: 14%;
    opacity: 0;
  }

  8% {
    left: 20%;
    opacity: 1;
  }

  85% {
    left: 80%;
    opacity: 1;
  }

  100% {
    left: 86%;
    opacity: 0;
  }
}

/* COMMENTAIRES */

.interaction-section {
  margin-top: 32px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid #e0ecff;
  border-radius: 22px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.interaction-section h4 {
  margin: 0 0 12px;
  color: #082f52;
  font-size: 22px;
}

.comment-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.comment-form textarea {
  width: 100%;
  min-height: 100px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid #cbd5e1;
  font-size: 15px;
  background: #f8fafc;
}

.comment-form button {
  align-self: flex-start;
  padding: 12px 16px;
  border: none;
  border-radius: 999px;
  color: white;
  cursor: pointer;
  font-weight: 700;
  background: linear-gradient(135deg, #ff5a5f, #2563eb);
  box-shadow: 0 10px 18px rgba(15, 60, 104, 0.16);
}

.comment {
  margin-bottom: 10px;
  padding: 16px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
}

.comment p {
  margin-top: 0;
  margin-bottom: 6px;
  color: #334155;
  line-height: 1.6;
}

.comment span,
.no-comments {
  color: #6b7280;
  font-size: 13px;
}

.no-comments {
  display: block;
  padding: 14px;
  background: #f8fafc;
  border-radius: 14px;
  border: 1px dashed #cbd5e1;
}

/* BOUTONS BAS REPORT */

.report-bottom-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
  padding: 22px;
  background: white;
  border: 1px solid #e5edf7;
  border-radius: 22px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.close-report-bottom-button {
  padding: 13px 20px;
  border: none;
  border-radius: 999px;
  color: white;
  font-weight: 800;
  cursor: pointer;
  background: linear-gradient(135deg, #ff5a5f, #2563eb);
}

.delete-button {
  margin-top: 0;
  padding: 13px 20px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  color: white;
  font-weight: 800;
  background: #dc2626;
}

.delete-button:hover {
  background: #991b1b;
}

/* FORMULAIRE */

#create-report {
  display: none;
}

#create-report.visible {
  display: block;
}

.report-form {
  padding: 34px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 237, 213, 0.70), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #dbeafe;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.12);
}

.form-block {
  margin-bottom: 24px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #e0ecff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.form-block h3 {
  margin: 0 0 18px;
  padding: 0;
  border-top: none;
  color: #082f52;
  font-size: 22px;
  letter-spacing: -0.2px;
}

.form-block h3::before {
  content: "▸ ";
  color: #ff5a5f;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.report-form label {
  display: block;
  margin: 14px 0 7px;
  color: #1f2937;
  font-size: 14px;
  font-weight: 800;
}

.report-form input,
.report-form textarea,
.report-form select {
  width: 100%;
  padding: 14px 15px;
  border-radius: 14px;
  border: 1px solid #cfe0ff;
  background: #ffffff;
  font-size: 15px;
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.02);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.report-form textarea {
  resize: vertical;
  min-height: 110px;
}

.report-form input:focus,
.report-form textarea:focus,
.report-form select:focus {
  outline: none;
  border-color: #ff5a5f;
  background: white;
  box-shadow: 0 0 0 4px rgba(255, 90, 95, 0.12);
}

.report-form input[type="file"] {
  background: #f8fafc;
  border-style: dashed;
  cursor: pointer;
}

.publish-button {
  width: 100%;
  margin-top: 8px;
  padding: 17px;
  border: none;
  border-radius: 999px;
  color: white;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  background: linear-gradient(135deg, #ff5a5f, #2563eb);
  box-shadow: 0 16px 32px rgba(255, 90, 95, 0.24);
}

.publish-button:hover {
  transform: translateY(-1px);
  opacity: 0.97;
}

.footer {
  max-width: 1180px;
  margin: 50px auto 20px;
  padding: 0 24px;
  color: #6b7280;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 999px;
  color: white;
  font-size: 24px;
  font-weight: 900;
  cursor: pointer;
  z-index: 50;
  background: linear-gradient(135deg, #ff5a5f, #2563eb);
  box-shadow: 0 16px 34px rgba(255, 90, 95, 0.24);
}

.back-to-top:hover {
  transform: translateY(-2px);
  opacity: 0.96;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .topbar-inner {
    grid-template-columns: 1fr;
  }

  .brand {
    font-size: 30px;
  }

  .brand-icon {
    width: 42px;
    height: 42px;
  }

  .search-box {
    max-width: none;
    justify-self: stretch;
  }

  .hero {
    min-height: 440px;
  }

  .hero-overlay {
    min-height: 440px;
  }

  .hero h1 {
    font-size: 40px;
    letter-spacing: -1px;
  }

  .hero p {
    font-size: 18px;
  }

  .intro-section {
    grid-template-columns: 1fr;
    margin-top: 24px;
    gap: 14px;
  }

  .intro-card {
    padding: 18px 16px;
    border-radius: 20px;
  }

  .intro-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    font-size: 25px;
    margin-bottom: 12px;
  }

  .intro-card h3 {
    font-size: 20px;
  }

  .intro-card p {
    font-size: 14px;
  }

  .section-header h2 {
    font-size: 31px;
  }

  .report-summary {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .route-cities {
    flex-direction: column;
  }

  .city,
  .city.city-end {
    width: 100%;
    text-align: left;
  }
}

@media (max-width: 700px) {
  .report-content {
    padding: 18px;
  }

  .report-section,
  .interaction-section,
  .report-bottom-actions {
    padding: 18px;
    border-radius: 18px;
  }

  .report-section h4 {
    font-size: 20px;
  }

  .section-photo {
    max-width: 100%;
    max-height: 360px;
  }

  .report-section p {
    max-width: 92%;
  }

  .route-track {
    height: 64px;
  }

  .route-line {
    height: 24px;
  }

  .route-line::before,
  .route-line::after {
    height: 3px;
  }

  .route-track::before,
  .route-track::after {
    top: 21px;
    width: 16px;
    height: 16px;
    border-width: 3px;
  }

  .route-train {
    width: 110px;
    height: 40px;
  }

  .report-form {
    padding: 20px;
    border-radius: 24px;
  }

  .form-block {
    padding: 18px;
    border-radius: 20px;
  }
}

@media (max-width: 480px) {
  .section-photo {
    max-height: 300px;
  }
}.report-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.report-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}.report-card img {
    transition: transform 0.4s ease;
}

.report-card:hover img {
    transform: scale(1.05);
}.report-card {
    position: relative;
    overflow: hidden;
}

.report-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.2),
        transparent
    );
    transition: 0.5s;
}

.report-card:hover::before {
    left: 100%;
}.intro-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.intro-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}.intro-card:hover {
    transform: translateY(-6px) scale(1.02);
}/* Effet focus sur les cartes reports */
.reports-container:hover .report-card {
    opacity: 0.5;
    transform: scale(0.98);
}

.reports-container .report-card:hover {
    opacity: 1;
    transform: translateY(-8px) scale(1.03);
    z-index: 2;
}/* =====================================================
   V1.2 — AMÉLIORATION LECTURE DU REPORT OUVERT
   ===================================================== */

.report-details {
  background: linear-gradient(180deg, #ffffff 0%, #fff8fb 45%, #f7fbff 100%) !important;
}

.report-content {
  max-width: 980px;
  margin: 0 auto;
  padding: 34px 28px !important;
}

/* Carte du trajet plus douce dans le report ouvert */
.route-card {
  border-radius: 26px !important;
  border: 1px solid rgba(255, 90, 95, 0.18) !important;
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 90, 95, 0.10), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(37, 99, 235, 0.12), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f2fbff 100%) !important;
}

/* Étapes du report plus lisibles */
.report-section {
  position: relative;
  background: #ffffff !important;
  border: 1px solid rgba(226, 232, 240, 0.95) !important;
  border-radius: 26px !important;
  padding: 28px !important;
  margin-top: 30px !important;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08) !important;
}

.report-section h4 {
  color: #111827 !important;
  font-size: 24px !important;
  margin-bottom: 18px !important;
  letter-spacing: -0.4px;
}

.report-section h4::before {
  content: "● ";
  color: #ff5a5f !important;
}

/* Photos dans le report */
.section-photo {
  max-width: min(760px, 100%) !important;
  max-height: 440px !important;
  margin: 12px auto 24px !important;
  display: block !important;
  border-radius: 22px !important;
  background: #f8fafc !important;
  border: 1px solid #e5e7eb !important;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12) !important;
}

/* Texte sous les photos : style carnet de voyage */
.report-section p {
  max-width: 760px !important;
  margin: 18px auto 0 !important;
  padding: 18px 20px !important;
  background: linear-gradient(135deg, #ffffff 0%, #fff7fa 100%) !important;
  border: 1px solid rgba(255, 90, 95, 0.16) !important;
  border-radius: 18px !important;
  color: #334155 !important;
  font-size: 16px !important;
  line-height: 1.75 !important;
}

/* Conclusion plus premium */
.report-section:has(.rating) {
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 90, 95, 0.12), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f8fbff 100%) !important;
  border: 1px solid rgba(37, 99, 235, 0.18) !important;
}

.report-section:has(.rating) h4::before {
  content: "★ ";
  color: #f59e0b !important;
}

.report-section:has(.rating) .rating {
  display: inline-block;
  margin-top: 20px !important;
  padding: 11px 18px !important;
  background: #111827 !important;
  color: #ffffff !important;
  border-radius: 999px !important;
  border: none !important;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.18) !important;
}

/* Commentaires plus propres */
.interaction-section {
  background: #ffffff !important;
  border: 1px solid rgba(226, 232, 240, 0.95) !important;
  border-radius: 26px !important;
  padding: 26px !important;
  margin-top: 32px !important;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08) !important;
}

.interaction-section h4 {
  color: #111827 !important;
  font-size: 24px !important;
  margin-bottom: 16px !important;
}

.comment-form textarea {
  background: #fff7fa !important;
  border: 1px solid rgba(255, 90, 95, 0.18) !important;
  border-radius: 18px !important;
}

.comment-form button {
  background: linear-gradient(135deg, #ff5a5f, #2563eb) !important;
  border-radius: 999px !important;
  font-weight: 800 !important;
}

.comment {
  background: #f8fafc !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 18px !important;
}

/* Boutons de bas de report */
.report-bottom-actions {
  background: #ffffff !important;
  border: 1px solid rgba(226, 232, 240, 0.95) !important;
  border-radius: 26px !important;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08) !important;
}

.close-report-bottom-button {
  background: linear-gradient(135deg, #ff5a5f, #2563eb) !important;
}

@media (max-width: 700px) {
  .report-content {
    padding: 20px 16px !important;
  }

  .report-section,
  .interaction-section,
  .report-bottom-actions {
    padding: 20px !important;
    border-radius: 22px !important;
  }

  .report-section h4,
  .interaction-section h4 {
    font-size: 21px !important;
  }

  .section-photo {
    max-height: 340px !important;
  }

  .report-section p {
    max-width: 100% !important;
    padding: 15px 16px !important;
  }
}

/* MODÉRATION ADMIN */

.admin-report-actions {
  border-color: rgba(220, 38, 38, 0.20);
  background:
    radial-gradient(circle at top right, rgba(254, 226, 226, 0.80), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #fff7f7 100%);
}

.admin-hide-report-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 13px 20px;
  border: none;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #dc2626, #991b1b);
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(220, 38, 38, 0.22);
}

.admin-hide-report-button:hover {
  transform: translateY(-1px);
  opacity: 0.96;
}

.admin-hide-report-button:disabled {
  opacity: 0.60;
  cursor: not-allowed;
  transform: none;
}

.admin-help-text {
  max-width: 760px;
  margin: 12px 0 0 !important;
  color: #7f1d1d;
  background: rgba(254, 242, 242, 0.92) !important;
  border-color: rgba(252, 165, 165, 0.65) !important;
}


/* MODÉRATION COMMENTAIRES ADMIN */

.admin-comment-actions {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed rgba(220, 38, 38, 0.22);
}

.admin-hide-comment-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  border: none;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #dc2626, #991b1b);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(220, 38, 38, 0.18);
}

.admin-hide-comment-button:hover {
  transform: translateY(-1px);
  opacity: 0.96;
}

.admin-hide-comment-button:disabled {
  opacity: 0.60;
  cursor: not-allowed;
  transform: none;
}


/* RESTAURATION ADMIN REPORTS MASQUÉS */

.admin-hidden-reports-section {
  display: none;
  margin-top: 24px;
}

.admin-hidden-reports-section .section-header h2::after {
  background: linear-gradient(90deg, #16a34a, #2563eb) !important;
}

.admin-hidden-reports-list {
  display: grid;
  gap: 18px;
}

.admin-hidden-report-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(22, 163, 74, 0.10), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(22, 163, 74, 0.18);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.admin-hidden-report-card h3 {
  margin: 8px 0 6px;
  color: #111827;
  font-size: 22px;
  letter-spacing: -0.4px;
}

.admin-hidden-report-card p {
  margin: 6px 0 0;
  color: #475569;
  line-height: 1.55;
}

.admin-hidden-report-status {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fef2f2;
  color: #991b1b;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.admin-restore-report-button {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: none;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #16a34a, #2563eb);
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(22, 163, 74, 0.22);
}

.admin-restore-report-button:hover {
  transform: translateY(-1px);
  opacity: 0.96;
}

.admin-restore-report-button:disabled {
  opacity: 0.60;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 760px) {
  .admin-hidden-report-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-restore-report-button {
    width: 100%;
  }
}
/* RESTAURATION ADMIN COMMENTAIRES MASQUÉS */

.admin-hidden-comments-section {
  display: none;
  margin-top: 24px;
}

.admin-hidden-comments-section .section-header h2::after {
  background: linear-gradient(90deg, #16a34a, #8b5cf6) !important;
}

.admin-hidden-comments-list {
  display: grid;
  gap: 18px;
}

.admin-hidden-comment-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(139, 92, 246, 0.10), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(139, 92, 246, 0.18);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.admin-hidden-comment-card h3 {
  margin: 8px 0 6px;
  color: #111827;
  font-size: 22px;
  letter-spacing: -0.4px;
}

.admin-hidden-comment-card p {
  margin: 6px 0 0;
  color: #475569;
  line-height: 1.55;
}

.admin-hidden-comment-content {
  max-width: 780px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  color: #334155 !important;
  font-style: italic;
}

.admin-hidden-comment-status {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fef2f2;
  color: #991b1b;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.admin-restore-comment-button {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: none;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #16a34a, #8b5cf6);
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(22, 163, 74, 0.20);
}

.admin-restore-comment-button:hover {
  transform: translateY(-1px);
  opacity: 0.96;
}

.admin-restore-comment-button:disabled {
  opacity: 0.60;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 760px) {
  .admin-hidden-comment-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-restore-comment-button {
    width: 100%;
  }
}


/* =====================================================
   V2 — ESPACE ADMIN RAILREPORTERS
   ===================================================== */

.admin-dashboard-section {
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 90, 95, 0.12), transparent 28%),
    radial-gradient(circle at 90% 18%, rgba(37, 99, 235, 0.12), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.10);
}

.admin-dashboard-hero {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.admin-dashboard-kicker,
.admin-panel-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 90, 95, 0.10);
  color: #9f1239;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.admin-dashboard-hero h2 {
  margin: 0;
  color: #111827;
  font-size: 32px;
  letter-spacing: -0.6px;
}

.admin-dashboard-hero p,
.admin-panel-header p {
  margin: 8px 0 0;
  color: #64748b;
  line-height: 1.55;
}

.admin-dashboard-summary {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.admin-dashboard-stat {
  min-width: 128px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #111827;
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.16);
}

.admin-dashboard-stat strong {
  display: block;
  font-size: 28px;
  line-height: 1;
}

.admin-dashboard-stat span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: #cbd5e1;
}

.admin-dashboard-note {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(226, 232, 240, 0.95);
  color: #475569;
  line-height: 1.55;
}

.admin-dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.admin-dashboard-panel {
  padding: 20px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.admin-panel-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.admin-panel-header h3 {
  margin: 0;
  color: #111827;
  font-size: 24px;
  letter-spacing: -0.4px;
}

.admin-dashboard-panel .empty-state {
  margin: 0;
  padding: 18px;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  color: #64748b;
}

@media (max-width: 900px) {
  .admin-dashboard-hero,
  .admin-panel-header {
    flex-direction: column;
  }

  .admin-dashboard-summary {
    width: 100%;
    justify-content: stretch;
  }

  .admin-dashboard-stat {
    flex: 1 1 140px;
  }

  .admin-dashboard-grid {
    grid-template-columns: 1fr;
  }
}
/* =====================================================
   V2 — ESPACE ADMIN UTILISATEURS
   ===================================================== */

.admin-users-section {
  grid-column: 1 / -1;
}

.admin-users-list {
  display: grid;
  gap: 14px;
}

.admin-user-card {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border-radius: 20px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.admin-user-card.banned {
  background: #fff7ed;
  border-color: #fed7aa;
}

.admin-user-card h3 {
  margin: 8px 0 8px;
  color: #111827;
  font-size: 20px;
}

.admin-user-card p {
  margin: 0;
  color: #475569;
  line-height: 1.5;
}

.admin-user-status {
  display: inline-flex;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.admin-user-status.active {
  background: #dcfce7;
  color: #166534;
}

.admin-user-status.banned {
  background: #fee2e2;
  color: #991b1b;
}

.admin-user-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  min-width: 150px;
}

.admin-user-action-button {
  border: none;
  border-radius: 999px;
  padding: 10px 14px;
  color: white;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.14);
}

.admin-user-action-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.admin-ban-user-button {
  background: linear-gradient(135deg, #ef4444, #f97316);
}

.admin-unban-user-button {
  background: linear-gradient(135deg, #16a34a, #2563eb);
}

.admin-user-protected {
  max-width: 180px;
  padding: 10px 12px;
  border-radius: 14px;
  background: #eef2ff;
  color: #3730a3 !important;
  font-size: 13px;
  font-weight: 800;
  text-align: right;
}

@media (max-width: 760px) {
  .admin-user-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-user-actions {
    width: 100%;
    align-items: stretch;
  }

  .admin-user-action-button,
  .admin-user-protected {
    width: 100%;
    text-align: center;
  }
}


/* SIGNALEMENTS V2 */

.report-signal-section {
  border-color: rgba(245, 158, 11, 0.28);
  background:
    radial-gradient(circle at top right, rgba(254, 243, 199, 0.82), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffbeb 100%);
}

.report-signal-section h4::before {
  color: #f59e0b;
}

.signal-login-button,
.report-signal-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 12px 16px;
  border: none;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(245, 158, 11, 0.18);
}

.signal-login-button:hover,
.report-signal-form button:hover {
  transform: translateY(-1px);
  opacity: 0.96;
}

.signal-login-button:disabled,
.report-signal-form button:disabled {
  opacity: 0.60;
  cursor: not-allowed;
  transform: none;
}

.report-signal-form {
  display: grid;
  gap: 10px;
  max-width: 720px;
  margin: 18px auto 0;
}

.report-signal-form label {
  color: #92400e;
  font-size: 13px;
  font-weight: 900;
}

.report-signal-form select,
.report-signal-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #fcd34d;
  background: rgba(255, 255, 255, 0.92);
  color: #111827;
  font: inherit;
}

.report-signal-form textarea {
  min-height: 90px;
  resize: vertical;
}

.signal-status {
  margin: 4px 0 0 !important;
  padding: 10px 12px !important;
  border-radius: 12px !important;
  font-size: 14px !important;
  background: rgba(255, 255, 255, 0.72) !important;
  border: 1px solid rgba(251, 191, 36, 0.45) !important;
}

.signal-status.ok {
  color: #166534 !important;
  background: #ecfdf5 !important;
  border-color: #bbf7d0 !important;
}

.signal-status.error {
  color: #991b1b !important;
  background: #fef2f2 !important;
  border-color: #fecaca !important;
}

/* SIGNALEMENT COMMENTAIRE V2 */

.comment-signal-block,
.comment-signal-details {
  margin-top: 12px;
}

.comment-signal-details {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 251, 235, 0.78);
  border: 1px solid rgba(245, 158, 11, 0.26);
}

.comment-signal-details summary {
  cursor: pointer;
  color: #92400e;
  font-weight: 900;
  font-size: 13px;
}

.comment-signal-form {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.comment-signal-form label {
  color: #92400e;
  font-size: 13px;
  font-weight: 900;
}

.comment-signal-form select,
.comment-signal-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #fcd34d;
  background: rgba(255, 255, 255, 0.92);
  color: #111827;
  font: inherit;
}

.comment-signal-form textarea {
  min-height: 90px;
  resize: vertical;
}

.comment-signal-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 10px 14px;
  border: none;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  font-weight: 900;
  cursor: pointer;
}

.comment-signal-login-button {
  font-size: 13px;
  padding: 10px 13px;
}

.comment-signal-message {
  color: #92400e;
  font-size: 13px;
  font-weight: 800;
}



/* =====================================================
   V2 ADMIN — Signalements
   ===================================================== */
.admin-moderation-reports-section {
  grid-column: 1 / -1;
}

.admin-moderation-reports-list {
  display: grid;
  gap: 14px;
}

.admin-moderation-report-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.admin-moderation-report-titleline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
}

.admin-moderation-type,
.admin-moderation-status {
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
}

.admin-moderation-type {
  color: #1e3a8a;
  background: rgba(59, 130, 246, 0.12);
}

.admin-moderation-status.status-pending {
  color: #92400e;
  background: rgba(245, 158, 11, 0.16);
}

.admin-moderation-status.status-reviewed {
  color: #075985;
  background: rgba(14, 165, 233, 0.14);
}

.admin-moderation-status.status-rejected {
  color: #991b1b;
  background: rgba(239, 68, 68, 0.12);
}

.admin-moderation-status.status-action_taken {
  color: #166534;
  background: rgba(34, 197, 94, 0.14);
}

.admin-moderation-report-card h3 {
  margin: 0 0 8px;
  color: #111827;
}

.admin-moderation-report-card p {
  margin: 0 0 8px;
  color: #334155;
  line-height: 1.5;
}

.admin-moderation-details {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(248, 250, 252, 0.95);
  border: 1px solid rgba(226, 232, 240, 0.95);
}

.admin-moderation-details.muted {
  color: #64748b;
  font-style: italic;
}

.admin-moderation-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 190px;
}

.admin-moderation-status-button {
  border: none;
  border-radius: 999px;
  padding: 9px 12px;
  font-weight: 900;
  cursor: pointer;
  color: #ffffff;
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.22);
}

.admin-moderation-status-button.secondary {
  background: linear-gradient(135deg, #f97316, #ef4444);
  box-shadow: 0 8px 18px rgba(239, 68, 68, 0.2);
}

.admin-moderation-status-button.success {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 8px 18px rgba(22, 163, 74, 0.2);
}

.admin-moderation-hide-content-button.danger {
  border: none;
  border-radius: 999px;
  padding: 9px 12px;
  font-weight: 900;
  cursor: pointer;
  color: #ffffff;
  background: linear-gradient(135deg, #ef4444, #991b1b);
  box-shadow: 0 8px 18px rgba(153, 27, 27, 0.22);
}

.admin-moderation-hide-content-button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  box-shadow: none;
}

.admin-moderation-status-button:disabled {
  opacity: 0.65;
  cursor: wait;
}

@media (max-width: 780px) {
  .admin-moderation-report-card {
    grid-template-columns: 1fr;
  }

  .admin-moderation-actions {
    min-width: 0;
  }
}
