/* Modern design JMG - style.css */
.jmg-organisateur {
  font-family: 'Segoe UI', Roboto, sans-serif;
  max-width: 1000px;
  margin: auto;
  padding: 1.5rem;
  color: #222;
  background: #f9f9f9;
  border-radius: 12px;
}

.jmg-organisateur h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #007c32;
}

.jmg-organisateur ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.jmg-organisateur li a {
  display: block;
  padding: 8px 16px;
  background-color: #e6f3eb;
  border: 1px solid #007c32;
  border-radius: 8px;
  color: #007c32;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.jmg-organisateur li a:hover {
  background-color: #007c32;
  color: #fff;
}

.jmg-organisateur button {
  background-color: #007c32;
  color: white;
  padding: 8px 18px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 0.95rem;
  cursor: pointer;
  margin: 10px 0 20px 0;
}

.jmg-organisateur button:hover {
  background-color: #005f26;
}

.jmg-organisateur table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}

.jmg-organisateur th {
  background-color: #007c32;
  color: white;
  padding: 12px;
  text-align: left;
  font-size: 0.95rem;
}

.jmg-organisateur td {
  padding: 10px;
  border: 1px solid #ddd;
  font-size: 0.92rem;
}

.jmg-organisateur tbody tr:nth-child(even) {
  background-color: #f4f4f4;
}

@media screen and (max-width: 768px) {
  .jmg-organisateur ul {
	flex-direction: column;
  }

  .jmg-organisateur table,
  .jmg-organisateur thead,
  .jmg-organisateur tbody,
  .jmg-organisateur th,
  .jmg-organisateur td,
  .jmg-organisateur tr {
	display: block;
  }

  .jmg-organisateur th {
	display: none;
  }

  .jmg-organisateur td {
	position: relative;
	padding-left: 50%;
	border: none;
	border-bottom: 1px solid #ccc;
  }

  .jmg-organisateur td::before {
	position: absolute;
	top: 10px;
	left: 10px;
	width: 45%;
	font-weight: bold;
	white-space: nowrap;
	content: attr(data-label);
  }
}