@import 'https://fonts.googleapis.com/css?family=Fira+Sans:300,400';
@import 'https://fonts.googleapis.com/icon?family=Material+Icons';
* {
  box-sizing: border-box;
}

body {
  background-color: #000000;
  font-family: "Fira Sans", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.875em;
}
body::after {
  content: "";
  position: absolute;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  transition: 0.4s;
  opacity: 0;
  visibility: hidden;
}

a {
  text-decoration: none;
}

.logo img {
  width: 150px; /* Taille du logo */
  height: auto; /* Maintient les proportions */
  padding-top: 10px;
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 32px!important;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
}

.nav-top {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: fixed;
  z-index: 101;
  padding: 10px;
  width: 100%;
  height: 80px;
  background-color: #000000;
}
.nav-top .hamburger {
  margin-left: auto;
  color: #fff;
  cursor: pointer;
  z-index: 10002;
  text-align: left;
}

.nav-drill {
  margin-top: 80px;
}

.nav-is-toggled .nav-drill {
  transform: translateX(0);
}
.nav-is-toggled::after {
  opacity: 1;
  visibility: visible;
}

.nav-drill {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  min-height: 100vh;
  background-color: #fff;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 999;
  transform: translateX(100%); /* Le menu est caché à droite */
  transition: transform 0.3s ease; /* Transition fluide */
}


.nav-item:not(:last-child) {
  border-bottom: solid 1px #ece4d9;
}
.nav-link {
  display: block;
  padding: 0.675em 0.3em;
  background-color: #fff;
  color: #000000;
  font-size: 1.3rem;
  line-height: 1.4em;
  font-weight: 300;
}
.nav-expand-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateX(100%);
  background-color: #daf9f4;
  transition: 0.3s;
  visibility: hidden;
}
.nav-expand-content .nav-item:not(:last-child) {
  border-bottom: solid 1px #ece4d9;
}
.nav-expand-content .nav-link {
  background-color: #daf9f4;
}
.nav-expand-content .nav-back-link {
  display: flex;
  align-items: center;
  background-color: #000000 !important;
  color: #fff;
}
.nav-back-link {
  font-size: 1.3rem;
  font-weight: bold;
}
.nav-expand-content .nav-back-link::before {
  content: "chevron_left";
  margin-right: 0.5em;
  font-family: "Material Icons";
}
.nav-expand-link {
  display: flex;
  justify-content: space-between;
  font-size: 1.3rem;
  font-weight: bold;
}
.nav-expand-link::after {
  content: "chevron_right";
  flex: 0 1 auto;
  font-family: "Material Icons";
}
.nav-expand.active > .nav-expand-content {
  transform: translateX(0);
  visibility: visible;
}
.nav-expand .nav-expand-content {
  background-color: #ffffff;
}
.nav-expand .nav-expand-content .nav-link {
  background-color: #ffffff;
}
.nav-expand .nav-expand-content .nav-expand-content {
  background-color: #ffffff;
}
.nav-expand .nav-expand-content .nav-expand-content .nav-link {
  background-color: #ffffff;
}
.nav-expand .nav-expand-content .nav-expand-content .nav-expand-content {
  background-color: #ffffff;
}
.nav-expand .nav-expand-content .nav-expand-content .nav-expand-content .nav-link {
  background-color: #ffffff;
}
.nav-expand .nav-expand-content .nav-expand-content .nav-expand-content .nav-expand-content {
  background-color: #ffffff;
}
.nav-expand .nav-expand-content .nav-expand-content .nav-expand-content .nav-expand-content .nav-link {
  background-color: #ffffff;
}

/***** POINTS SYSTEM *******/
.points-display {
  margin: 0;
  line-height: 1.2;
}
.points-display .highlight {
  color: #f8cc79;
  font-weight: bold;
}
.points-display .white {
  color: black;
}


/*** Profile image ****/
.user-profile {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 1rem;
  border-bottom: 1px solid #ddd; /* Ligne de séparation */
}

.profile-container {
  display: flex;
  align-items: center;
}

.profile-image {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  margin-right: 1rem;
  object-fit: cover;
}

.profile-info {
  display: flex;
  flex-direction: column;
}

.profile-info-group {
  font-size:larger!important;
}

.profile-name {
  font-weight: bold;
  color: #333;
}

.profile-status {
  font-size: 0.875rem;
  color: #666;
  margin-top: 0.2rem;
}




/******* Media Query *************/
@media (max-width: 767px) {

}
