@font-face {
    font-family: 'BLOGGER SANS BOLD';
    font-style: normal;
    font-weight: bold;
    font-display: auto;
    src: url('../fonts/BloggerSans-Bold.eot');
    src: url('../fonts/BloggerSans-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/BloggerSans-Bold.woff') format('woff'), url('../fonts/BloggerSans-Bold.ttf') format('truetype'), url('../fonts/BloggerSans-Bold.svg#BLOGGERSANSBOLD') format('svg')
}

@font-face {
    font-family: 'BLOGGER SANS';
    font-style: normal;
    font-weight: normal;
    font-display: auto;
    src: url('../fonts/BloggerSans.eot');
    src: url('../fonts/BloggerSans.eot?#iefix') format('embedded-opentype'), url('../fonts/BloggerSans.woff') format('woff'), url('../fonts/BloggerSans.ttf') format('truetype'), url('../fonts/BloggerSans.svg#BLOGGERSANS') format('svg')
}

:root {
  /* Couleurs */
  --orange: #F18932;
  --orange-dark: #e57916;

  --blue: #77BDE2;
  --blue-light: #e8f4fb;

  --purple: #861773;

  --text: #000;
  --bg: #ffffff;

  /* UI */
  --radius: 16px;
  --radius-small: 10px;
  --border: 3px solid var(--blue);

  /* Layout */
  --container-width: 1200px;
  --gap: 20px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Calibri, Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  font-size:18px
}

img {
  max-width: 100%;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--gap);
}

.row {
  display: flex;
  gap: var(--gap);
  align-items: flex-start;
  flex-wrap: nowrap;
}

.col-10  { width: 10%; }
.col-15  { width: 15%; }
.col-20  { width: 20%; }
.col-25  { width: 25%; }
.col-30  { width: 30%; }
.col-40  { width: 40%; }
.col-50  { width: 50%; }
.col-60  { width: 60%; }
.col-70  { width: 70%; }
.col-80  { width: 80%; }
.col-90  { width: 90%; }
.col-100 { width: 100%; }

h1 {
  font-family: 'BLOGGER SANS BOLD';
  color: var(--purple);
  font-weight: 800;
  margin-top: 0;
	text-align:center;
	line-height:1.25;
}

h2, h3 {
  font-family: 'BLOGGER SANS';
  color: var(--orange); 
  font-weight: 800;
  margin: 10px 3px 3px;
	line-height:1.25;
}

h4 {
	font-family: 'BLOGGER SANS';
	color: var(--purple);
	font-weight: 600;
	margin: 10px 3px 3px;
	line-height:1.25;
}

p, li {
  line-height: 1.5;
	margin: 2px;
}

a {
  color: var(--purple);
}

.header {
  background: var(--orange);
  color: #fff;
  padding: 16px 0;
}

.header-flex {
  display: flex;
  align-items: center;
}

.header-left {
  margin-right: auto;
}

.header-center {
  text-align: center;
}

.header-center h1 {
  color: #fff;
  margin: 0;
  text-transform: uppercase;
  font-size: clamp(32px, 8vw, 60px);
  font-weight: 800;
}

.header-right {
  display: flex;
  align-items: center;
  margin-left: auto;
  max-width:250px;
}

.header-right img {
  height: 80px;
}

.header-right-text {
  font-family: 'BLOGGER SANS BOLD';
  font-size: clamp(14px, 3vw, 20px);
  line-height: 1.1;
  color: #fff;
  text-transform: uppercase;
}

footer {
  margin-top: 40px;
  padding: 24px 16px;
  text-align: center;
  font-size: 0.95em;
  color: var(--purple);
  background: var(--bg);
}

footer a {
  color: var(--purple);
  font-weight: bold;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

footer p {
  margin: 12px 0 0;
  line-height: 1.6;
}

/* Lien "Haut de page" */
footer > a {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.9em;
}

.card {
  border: var(--border);
  border-radius: var(--radius);
  background: white;
  padding: 16px;
  margin-bottom: 5px;
  align-content: center;
}

.card--info {
  background: var(--blue-light);
}

.card-title {
  text-align: center;
  font-size: 30px;
  font-weight: 800;
  color: var(--purple);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.panel {
  border: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: white;
	margin-bottom: 4px;
}

.panel-header {
  background: var(--blue);
  font-weight: bold;
  padding: 8px 12px;
  text-align: center;
}

.panel-header h2{
	color: #000;
}

.panel-body {
  padding: 12px;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-overlay.is-open {
  display: flex;
}

.modal-window {
  background: #fff;
  width: 90%;
  max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
}

.modal-header {
  background: var(--blue);
  color: #fff;
  padding: 2px 16px;
}

.modal-header h1{
	color: #fff;
	text-align: center;
	margin: 10px 20px 0px;
}

.modal-header p{
	margin: auto;
}

.modal-body {
  padding: 8px 16px;
}

.modal-footer {
  padding: 4px 16px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  font-weight: bold;
  display: block;
  margin-bottom: 4px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 8px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.password-wrapper {
  display: flex;
  gap: 8px;
}

.buble{
	border-radius: var(--radius-small);
	background-color: var(--blue);
	box-sizing: border-box;
	padding: 8px;
	margin: 10px 0px;
}
	
.btn {
  padding: 8px 16px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}

.hidden {
  display: none;
}

.bg-danger {
  color: #fff;
  background: #c0392b;
  padding: 8px;
  border-radius: 6px;
}

.bg-success {
  color: #fff;
  background: #27ae60;
  padding: 8px;
  border-radius: 6px;
}


.btn {
  display: inline-block;
  background: var(--orange);
  color: white;
  border-radius: 999px;
  padding: 8px 14px;
	margin-top: 2px;
  font-weight: bold;
  text-decoration: none;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  background: var(--orange-dark);
}

.step {
  display: flex;
  gap: 16px;
}

.step-number {
  min-width: 50px;
  height: 50px;
  background: var(--blue);
  color: #fff;
  font-weight: bold;
  font-size: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.input {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border: 2px solid #000;
}

.forgot {
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
}

.icon {
  text-align: center;
}

.icon img{
  height:100%;
}

.btn img {
  max-height: 80px;
  margin: 10px;
}

.end{
	align-items: end;
}

.dataTable {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: white;
  font-size: 0.95em;
}

.dataTable thead .table-title th {
  background: var(--blue);
  color: white;
  text-align: center;
  font-size: 1.2em;
  font-weight: bold;
  padding: 12px;
  cursor: pointer;
}

.dataTable thead tr:not(.table-title) th {
  background: var(--blue-light);
  color: var(--text);
  padding: 10px;
  text-align: left;
  font-weight: bold;
  border-bottom: 2px solid var(--blue);
}

.dataTable tbody td {
  padding: 10px;
  border-bottom: 1px solid #ddd;
  vertical-align: middle;
}

.dataTable tbody tr:nth-child(even) {
  background: #f9f9f9;
}

.dataTable tbody tr:hover {
  background: #eef6fb;
}

.dataTable td:last-child {
  text-align: center;
  white-space: nowrap;
}

.table-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 16px 0;
  gap: 12px;
}

.iconaction {
	max-height: 15px;
	max-width: 15px;
}

.stats-list {
  list-style: none;
  margin: 8px 0px 0px;
  padding: 0;
  border: var(--border);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  max-width: 400px;
}

.stats-list .list-group-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 16px;
  font-weight: bold;
  border-bottom: 2px solid var(--blue-light);
}

.stats-list .list-group-item:last-child {
  border-bottom: none;
}

.stats-list .badge {
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  min-width: 42px;
  text-align: center;
}

.stats-list .list-group-item:hover {
  background: var(--blue-light);
}

.map-container {
  border: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  margin: 20px 0;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 900px) {
  .row {
    flex-wrap: wrap;
  }

  .col-10,
	.col-15,
  .col-20,
  .col-25,
  .col-30,
  .col-40,
  .col-50,
  .col-60,
  .col-70 {
    width: 100%;
  }
	
	.form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .header-left {
    flex-direction: column;
    text-align: center;
  }

  .header-right {
    text-align: center;
  }
}

