* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: linear-gradient(90deg, #92dceb, #4a90e2);
  padding: 0 10px;
}

header {
  display: grid;
  grid-template-columns: 20% 80%;
  grid-template-areas: "logo titre" "logo banniere";
  grid-template-rows: 50px 150px;
  align-items: center;
  justify-items: center;
}
header .image {
  grid-area: logo;
  max-height: 200px;
  padding-top: 10px;
  animation: flipZoom 4s forwards;
}
header h1 {
  grid-area: titre;
  text-align: center;
  color: white;
}
header .banner {
  grid-area: banniere;
}
header .banner img {
  height: 150px;
  display: block;
  opacity: 0.6;
}

@keyframes flipZoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1) rotateY(360deg);
  }
}
nav {
  border-top: 2px solid #ff6b00;
  border-bottom: 2px solid #ff6b00;
  padding: 10px 0;
  margin-top: 10px;
}
nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
nav a {
  text-decoration: none;
  color: white;
  padding: 5px 10px;
  transition: 0.3s;
}
nav a:hover {
  background: white;
  color: #92dceb;
  border-radius: 5px;
  font-weight: bold;
}

.main-content {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  min-height: calc(100vh - 350px);
}

aside {
  width: 20%;
  padding: 15px;
}
aside h3 {
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: blue;
}
aside li,
aside .btn-principal {
  list-style: none;
  background-color: wheat;
  color: blue;
  border-left: 5px solid orange;
  border-radius: 5px;
  padding: 8px 12px;
  margin-bottom: 8px;
  width: -moz-fit-content;
  width: fit-content;
  transition: transform 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}
aside li a {
  text-decoration:none;
}
aside li:hover,
aside .btn-principal:hover {
  transform: translateX(8px);
  background: #f5deb3;
  font-weight: bold;
}
aside .submenu {
  display: none;
  padding-left: 20px;
}
aside .submenu li:hover {
  transform: translateX(8px);
}
aside .parent-ag {
  background: none !important;
  border-left: none !important;
  padding: 0 !important;
}
aside .parent-ag:hover .submenu {
  display: block;
}

main {
  display: flex;
  flex: 1;
  padding: 30px;
  background: url("../img/main.png") center/cover;
  border-radius: 10px;
  color: wheat;
}
main .bienvenue-rainbow {
  background: linear-gradient(to right, red, orange, yellow, green, blue, indigo, violet);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 3rem;
  font-weight: 800;
}

.login-card-inline {
  padding: 30px;
  border-radius: 12px;
  border: 2px solid #ff6b00;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.05);
  margin: auto;
  max-width: 350px;
}

.input-group {
  margin-bottom: 15px;
}
.input-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}
.input-group input,
.input-group textarea {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
  color: white;
}
.input-group input:hover,
.input-group textarea:hover {
  border-color: #ff6b00;
  box-shadow: 0 0 5px #ff6b00;
}
.input-group input {
  background: rgba(0, 0, 0, 0.4);
}
.input-group textarea {
  background: rgba(0, 0, 0, 0.6);
  resize: vertical;
}

.btn-submit {
  display: block;
  margin: auto;
  padding: 12px;
  background: #ff6b00;
  color: white;
  border-radius: 5px;
  border: none;
  cursor: pointer;
}
.btn-submit:hover {
  background: rgb(126, 83, 5);
}

footer {
  border-top: 2px solid #ff6b00;
  border-bottom: 2px solid #ff6b00;
  color: white;
  text-align: center;
  padding: 10px;
  margin-top: 10px;
}/*# sourceMappingURL=style.css.map */

..table-membres {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  
  color: white;
}

.table-membres th {
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.table-membres thead  {
  color: #ff6b00;
  text-align: center;
  background: linear-gradient(90deg, #92dceb, #4a90e2);
}


.table-membres tbody tr td{
  background: rgba(0,0,0, 0.4);
  padding:0 5px;
}

.table-membres tbody tr:hover {
  background: rgba(255, 255, 255, 0.6);
}
.table-membres-wrapper {
  margin:auto;
  max-height: 400px;   
  overflow-y: auto;    
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.table-membres-wrapper h2 {
  background: linear-gradient(90deg, #92dceb, #4a90e2);
  display:flex;
  justify-content: center;
}