
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@layer theme, base, components, utilities;

@layer theme {
  :root, :host {
    --font-sans: "Open Sans", sans-serif;
    --breakpoint-xl: 80rem;
    --breakpoint-2xl: 96rem;
    --container-md: 28rem;
    --color-blue-light: #9bcbeb;
    --color-blue-marine: #071d49;
    --color-orange: #f18608;
    --color-orange-2 : #ff5e00;
    --color-gray: #f3f4f6;
    --color-black: #000;
    --color-white: #fff;
    --default-font-family: var(--font-sans);
    --font-weight-medium: 500;
    --font-weight-bold: 700;
    --font-weight-semibold: 600;
    --radius-lg: 0.5rem;
    --radius-md: 0.375rem;
    --spacing: 0.25rem;
    --text-sm: 0.875rem;
    --text-sm--line-height: calc(1.25 / 0.875);
  }
}

@layer base {
  *, ::after, ::before, ::file-selector-button {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 solid;
  }
  html, :host {
    line-height: 1.5;
    tab-size: 4;
    font-family: var( --default-font-family, "Open Sans" );
  }
   input, select, optgroup, textarea, ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    border-radius: 0;
    background-color: transparent;
    opacity: 1;
  }
  img, svg {
    display: block;
  }
  .text-orange{
    color: var(--color-orange);
  }
  ul, li {
    list-style: none;
  }

  a {
    font-family: "Open Sans", sans-serif;
    color: inherit;
    text-decoration: none;
  }
}
.absolute {
  position: absolute;
}
.mt-2{
  @media(width < 64rem){
    margin-top: calc(var(--spacing) * 3);
  }
}
.mt-10{
    margin-top: calc(var(--spacing) * 10);
}
.mt-5{
  margin-top: calc(var(--spacing) * 5);
}
.mt-3{
  margin-top: calc(var(--spacing) * 3);
}
.mb-4{
  margin-bottom: calc(var(--spacing) * 4);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.lg\:mt-0 {
  @media (width >= 64rem) {
    margin-top: calc(var(--spacing) * 0);
  }
}
.lg\:p-0 {
  @media (width >= 64rem) {
    padding: calc(var(--spacing) * 0);
  }
}
.flex-col {
  @media (width < 64rem){
    flex-direction: column;
}
.flex-col-1{
  flex-direction: column;
}
.lg\:w-auto {
  @media (width < 64rem) {
    width: auto;
  }
}
.h-screen {
  height: 100vh;
}
body {
  line-height: inherit;
  }

}
.rounded-md {
  border-radius: var(--radius-md);
}
.font-medium {
  --tw-font-weight: var(--font-weight-medium);
  font-weight: var(--font-weight-medium);
}
.md\:px-15 {
  @media (width < 48rem) {
    padding-inline: calc(var(--spacing) * 15);
  }
}
.lg\:px-30 {
  @media (width < 64rem) {
    padding-inline: calc(var(--spacing) * 30);
  }
}
.mt-15 {
  margin-top: calc(var(--spacing) * 15);
}
.p-4 {
  @media (width < 64rem){
    padding: calc(var(--spacing) * 4);
  }  
}
.p-6 {
    padding: calc(var(--spacing) * 6);  
}
.p-2{
  padding: calc(var(--spacing) * 4);
}
.md\:py-8 {
    padding-block: calc(var(--spacing) * 8);
}
.md\:py-6 {
    padding-block: calc(var(--spacing) * 6);
}
.ta-1{
  @media (width < 64rem){
    text-align: center;
  }
}
.mt-4 {
  @media (width < 64rem){
  margin-top: calc(var(--spacing) * 4);
  }
}
.lg\:space-x-8 {
  @media (width >= 64rem) {
    :where(& > :not(:last-child)) {
      --tw-space-x-reverse: 0;
      margin-inline-start: calc(calc(var(--spacing) * 8) * var(--tw-space-x-reverse));
      margin-inline-end: calc(calc(var(--spacing) * 8) * calc(1 - var(--tw-space-x-reverse)));
    }
  }
}
.border {
  border-style: var(--tw-border-style);
  border-width: 1px;
  border : solid
}
.border-orange{
  border-color: var(--color-orange); 
}
.gap-4 {
  gap: calc(var(--spacing) * 4);
}
.gap-2 {
  gap: calc(var(--spacing) * 2);
}
.flex-row {
  flex-direction: row;
}
.flex { 
  display: flex; 
}
.flex-1 { 
  @media(width >= 64rem){
    display: flex; 
  }
}
.fixed{
  position : fixed
}
.text-center {
  text-align: center;
}
.items-center { 
  align-items: center; 
}
.justify-between { 
  justify-content: space-between; 
}
.lg\:justify-between {
    justify-content: space-between;
}
.ml-auto { 
  margin-left: auto; 
}
.space-x-8 > :not(:last-child) { 
  margin-right: 2rem; 
}
.pr-2 {
  padding-right: 3.5rem;
}
.pt-30{
  @media (width < 64rem) {
  padding-top: 8rem;
  }
}
.pt-15{
  @media (width < 64rem) {
  padding-top: 3rem;
  }
}
.px-4 { 
  padding-left: 1rem; padding-right: 1rem; 
}
.px-5 {
  padding-inline: calc(var(--spacing) * 5);
}
.py-3 { 
  padding-top: 0.75rem; padding-bottom: 0.75rem; 
}
.py-10 {
  padding-block: calc(var(--spacing) * 10);
}
.sm\:text-center {
    text-align: center;
}
.h-11 { 
  height: calc(var(--spacing) * 11); 
}
.w-full { 
  width: 100%; 
}
.rounded-lg {
  border-radius: var(--radius-lg);
}
.cursor-pointer {
  cursor: pointer;
}
.text-white { 
  color: var(--color-white); 
}
.bg-blue-marine { 
  background-color: var(--color-blue-marine); 
}
.bg-orange { 
  background-color: var(--color-orange); 
}
.bg-orange-2 { 
  background-color: var(--color-orange-2); 
}
.bg-blue-light { 
  background-color: var(--color-blue-light); 
}
.transition-colors {
  transition-property: background-color, border-color, color, fill, stroke;
}

.duration-300 {
  transition-duration: 300ms;
}
.font-semibold {
  --tw-font-weight: var(--font-weight-semibold);
  font-weight: var(--font-weight-semibold);
}
.font-bold {
  --tw-font-weight: var(--font-weight-bold);
  font-weight: var(--font-weight-bold);
}
.hover\:underline:hover { 
  text-decoration: underline; 
}
.hover\:text-blue-light:hover { 
  color: var(--color-blue-light); 
}
.hover\:bg-orange:hover{
  background-color: var(--color-orange);
}
.hover\:bg-blue-light:hover{
  background-color: var(--color-blue-light);
}
.lg\:hidden {
  @media (width >= 64rem) {
    display: none;
  }
}
.hidden { 
  display: none; 
}
.max-w-screen-2xl {
  max-width: var(--breakpoint-2xl);
}
.max-w-md {
  max-width: var(--container-md);
}
.max-w-screen-xl {
  max-width: var(--breakpoint-xl);
}
.flex-wrap {
  @media (width < 64rem) {
  flex-wrap: wrap;
  }
}
.mx-auto {
  margin-inline: auto;
}
.block { 
  display: block; 
}
.top-0{
  padding-top: 0;
}
.top-1{
  padding-bottom: 1rem;
}
.pt-20{
  padding-top: 6rem;
}
.pt-10{
  padding-top: 2rem;
}
.lg\:block {
  @media (width >= 64rem) {
    display: block;
  }
}

@media (min-width: 1024px) {
  .lg\:flex { 
    display: flex !important; 
  }
  .lg\:hidden { 
    display: none !important; 
  }
  .lg\:items-center { 
    align-items: center; 
  }
  .lg\:space-x-8 > :not(:last-child) { 
    margin-right: 2rem; 
  }
  .lg\:ml-auto { 
    margin-left: auto; 
  }
  .lg\:flex-row { 
    flex-direction: row; 
  }
}



nav {
  background-color: var(--color-blue-marine);
  border-bottom: 2px solid var(--color-blue-marine);
  z-index: 1000;
}

nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  max-width: var(--breakpoint-2xl);
  margin: 0 auto;
}

nav img {
  height: calc(var(--spacing) * 11);
  object-fit: contain;
}

button#menu-button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  width: 2.5rem;
  background-color: transparent;
  border: none;
  color: var(--color-white);
}

@media (min-width: 1024px) {
  button#menu-button {
    display: none;
  }
}
@property --tw-font-weight {
  syntax: "*";
  inherits: false;
}

@property --tw-border-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}
@property --tw-font-weight {
  syntax: "*";
  inherits: false;
}

.team-buttons-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 2rem;
}

.team-button {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 1rem;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: black;
  font-weight: bold;
  font-size: 1.2rem;
  border: 3px solid var(--color-orange);
  cursor: pointer;
}

.team-button:hover {
  transform: scale(1.05);
  background-color: #ffe5b4;
}

.page-title {
  text-align: center;
  margin-bottom: 30px;
  color: #222;
}

.teams-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.team-card {
  width: 250px;
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s;
}

.team-card:hover {
  transform: scale(1.05);
  background-color: var(--color-blue-light);
}

.team-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}
.back-btn {
  background-color: var(--color-orange-2);
  color: black;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 1rem;
}
.compte-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}
.compte-btn {
  width: 250px;
  height: 250px;
  border: 4px solid orange;
  border-radius: 10px;
  font-size: 1.5rem;
  font-weight: bold;
  color: black;
  text-decoration: none;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s;
  background-color: #fff0d6;
}
.compte-btn:hover {
  transform: scale(1.05);
  background-color: #ffe5b4;
}
@media (min-width: 768px) {
  .compte-container {
    flex-direction: row;
  }
}

.dashboard-container, .form-container, .container-1 {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.dashboard-title, .title, .form-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: var(--color-blue-marine);
}

.dashboard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.action-card, .actualite-card, .equipe-card {
  background-color: #f0f0f0;
  border: 2px solid var(--color-blue-light, #9bcbeb);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.action-card:hover, .actualite-card:hover, .equipe-card:hover {
  transform: scale(1.05);
  background-color: #e6f7ff;
}

.action-card h3, .equipe-card h3 {
  margin-top: 1rem;
  font-size: 1.2rem;
  color: var(--color-blue-marine);
}

.back-btn:hover {
  background-color: var(--color-orange);
}

.actions button {
  margin-left: 1rem;
  background-color: var(--color-orange);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.actions button:hover {
  background-color: #ffa726;
}
.admin-body {
  background: linear-gradient(to right, #f5f5f5, #f2f2f2, #ededed);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.admin-login {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  max-width: 400px;
  width: 100%;
  text-align: center;
}

.admin-login input {
  width: 100%;
  margin-top: 1rem;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.admin-login button {
  width: 100%;
  margin-top: 1.5rem;
  padding: 0.75rem;
  background-color: var(--color-orange);
  color: black;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  transition: background-color 0.3s;
}

.admin-login button:hover {
  background-color: #ffa726;
}

.submit-btn {
  background-color: var(--color-orange);
  color: black;
  font-weight: bold;
  padding: 0.75rem;
  width: 100%;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #ffa726;
}
.preview-img {
  margin-top: 10px;
  max-height: 150px;
  object-fit: cover;
  border-radius: 8px;
}
.dropdown-equipe {
  position: relative;
}

.dropdown-equipe .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--color-blue-marine);
  min-width: 180px;
  z-index: 999;
  padding: 0;
  list-style: none;
}

.dropdown-equipe:hover .submenu {
  display: block;
}

.submenu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.submenu li a {
  color: white;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  text-decoration: none;
}

.submenu li a:hover {
  color : var(--color-blue-light);
}

.submenu li a span {
  font-weight: bold;
}

.dropdown-equipe:hover .submenu {
  display: block;
}

@media (max-width: 768px) {
  .dropdown-equipe .submenu {
    position: static;
    width: 100%;
  }

  .dropdown-equipe .submenu.hidden {
    display: none;
  }

  .dropdown-equipe .submenu.show {
    display: block;
  }
}
.btn-style {
  display: inline-flex;
  align-items: center;
  background-color: var(--color-orange); /* même bleu foncé que sur l'image */
  color: white;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s;
}

.btn-style::before {
  content: '';
  position: absolute;
  top: 0;
  left: -10px;
  width: 20px;
  height: 100%;
  background: white;
  transform: skewX(-20deg);
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.btn-style span {
  margin-left: auto;
  padding-left: 0.5rem;
}
.btn-style:hover{
  transform: scale(1.05);
}
.planning-section { margin-top: 2rem; }
    .toggle-buttons { display: flex; gap: 10px; margin-bottom: 20px; }

    .planning-table { width: 100%; border-collapse: collapse; }
    .planning-table th, .planning-table td { border: 1px solid #ccc; padding: 10px; text-align: center; background: white; }

    /* Planning grille (bloc) */
    .planning-grid { display: grid; grid-template-columns: 80px repeat(5, 1fr); grid-auto-rows: 50px; background: white; }
    .planning-grid .time { background: #eee; text-align: right; padding-right: 5px; }
    .planning-grid .day { font-weight: bold; background: #ddd; text-align: center; }
    .slot { background: #007bff; color: white; padding: 5px; border-radius: 4px; }
    .planning-grid-header {
      display: grid;
      grid-template-columns: 80px repeat(5, 1fr);
      background: #ddd;
      font-weight: bold;
      text-align: center;
      padding: 0.5rem 0;
    }
    
    .planning-grid-body {
      position: relative;
      height: calc(11 * 50px); /* 16:00 - 21:00, 30min steps */
      background: white;
      border-left: 1px solid #ccc;
      border-top: 1px solid #ccc;
    }
    
    .planning-grid-body .time {
      position: absolute;
      width: 80px;
      height: 50px;
      left: 0;
      border-bottom: 1px solid #ccc;
      background: #eee;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      padding-right: 10px;
      box-sizing: border-box;
      font-weight: bold;
    }
    
    .planning-grid-body .cell {
      position: absolute;
      border-right: 1px solid #ccc;
      border-bottom: 1px solid #ccc;
      box-sizing: border-box;
    }
    
    .planning-grid-body .slot {
      position: absolute;
      background-color: #007bff;
      color: white;
      padding: 5px;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      font-weight: bold;
      text-align: center;
      box-sizing: border-box;
      z-index: 10;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
    }
    .planning-grid-header {
      display: grid;
      grid-template-columns: 80px repeat(6, 1fr); /* 80px = horaires, puis 6 colonnes égales */
      border-bottom: 1px solid #ccc;
    }
    
    .planning-grid-header .day {
      text-align: center;
      font-weight: bold;
      padding: 10px 0;
      border-right: 1px solid #ccc;
      background: #f9f9f9;
    }
    
  
    .club-body{
      background: linear-gradient(to bottom right, #071d49, #0c3d8d);
    color: white;
    font-family: "Open Sans", sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    }
    .club-container {
      max-width: 1000px;
      margin: 0 auto;
      padding: 2rem 1rem;
    }
    
    .club-title {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      text-align: center;
      color: var(--color-orange);
    }
    
    .club-description {
      font-size: 1.1rem;
      line-height: 1.6;
      text-align: justify;
    }
    
    .club-section {
      margin-top: 2rem;
    }
    
    .club-section h2 {
      font-size: 1.75rem;
      margin-bottom: 0.75rem;
      color: var(--color-orange);
    }
    
    .club-section p,
    .club-section ul {
      font-size: 1rem;
      line-height: 1.5;
    }

    .actualite-body{
      background: linear-gradient(to bottom right, #071d49, #0c3d8d);
    color: white;
    font-family: "Open Sans", sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    }
/* Conteneur principal */
.actualite-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  background-color: var(--color-blue-marine);
  color: var(--color-white);
}

/* Titre principal */
.actualite-title {
  font-size: 2.5rem;
  text-align: center;
  color: var(--color-orange);
  margin-bottom: 2rem;
}

/* Bloc d'actualité */
.actualite-item {
  background-color: var(--color-white);
  color: var(--color-black);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.actualite-item:hover {
  transform: translateY(-3px);
}

/* Titre d'article */
.actualite-item h2 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: var(--color-orange);
}

/* Date */
.actualite-date {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 1rem;
}

/* Image */
.actualite-image {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .actualite-title {
    font-size: 2rem;
  }

  .actualite-item {
    padding: 1rem;
  }

  .actualite-item h2 {
    font-size: 1.3rem;
  }
}

/* Styles pour la page competition.html */

.competition-container {
  background: linear-gradient(to bottom right, #071d49, #0c3d8d);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  max-width: 100%;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
  color: #ffffff;
  background-color: #071d49;
}

.competition-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #f18608;
}

.competition-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.competition-button {
  animation-delay: 0.4s;
    display: inline-block;
    background-color: #f18608;
    color: #000;
    font-weight: bold;
    padding: 1rem 2rem;
    font-size: 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    transform: scale(1);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.competition-button:hover {
  background-color: #d97406;
}
.equipes-body{
  background: linear-gradient(to bottom right, #071d49, #0c3d8d);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.contact-body{
    background: linear-gradient(to bottom right, #071d49, #0c3d8d);
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.licence-body{
  background: linear-gradient(to bottom right, #071d49, #0c3d8d);
  color: white;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.licence-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.licence-title {
  font-size: 2.5rem;
  text-align: center;
  color: var(--color-orange);
  margin-bottom: 1rem;
}

.licence-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 2rem;
}

.licence-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.licence-buttons-1 {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.licence-action-btn {
  background-color: var(--color-orange);
  color: var(--color-white);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.licence-action-btn:hover {
  background-color: #d97406;
}

.licence-section {
  background: white;
  color: black;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.licence-section h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--color-blue-marine);
}

.licence-section ul {
  list-style: disc;
  padding-left: 1.5rem;
  line-height: 1.6;
}

/* Progress bar styles */
.progress-wrapper {
  position: relative;
  height: 20px;
  background-color: #e0e0e0;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background-color: var(--color-orange);
  transition: width 0.3s ease;
}

.progress-text {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.9rem;
  font-weight: bold;
  color: black;
  height: 100%;
  display: flex;
  align-items: center;
}
.tarifs-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.tarifs-title {
  font-size: 2.2rem;
  text-align: center;
  color: var(--color-orange);
  margin-bottom: 2rem;
}

.tarifs-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.tarifs-table th, .tarifs-table td {
  border: 1px solid #ccc;
  padding: 1rem;
  text-align: center;
}

.tarifs-table th {
  background: var(--color-blue-marine);
  color: white;
}

.tarifs-info {
  margin-top: 1.5rem;
  font-style: italic;
  text-align: center;
  color: #333;
}

.tarifs-body{
  background: linear-gradient(to bottom right, #071d49, #0c3d8d);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.logout-btn{
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: #f44336;
  color: white;
  padding: 8px 12px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #071d49;
  color: white;
  padding: 1rem;
  text-align: center;
  z-index: 9999;
  transition: transform 0.3s ease-in-out;
}

.cookie-banner p {
  margin: 0;
}

.cookie-banner a {
  color: #9bcbeb;
  text-decoration: underline;
}

.cookie-banner button {
  margin-left: 1rem;
  padding: 0.5rem 1rem;
  background-color: #f18608;
  color: black;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.cookie-banner.hidden-banner {
  transform: translateY(100%);
}
