:root {
  --bg-dark: #1a1a1a;
  --bg-light: #ffffff;
  --accent-yellow: #FFDB35;
  --text-light: #f2f2f2;
}



@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');





body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  scroll-behavior: smooth;
  font-size: 16px;
  scrollbar-width: thin;
  scrollbar-color: rgba(254,227,103,0.25) rgba(15,15,15,0.5);
}

/* Custom Scrollbar — Webkit (Chrome, Edge, Safari) */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: rgba(15,15,15,0.5);
}
::-webkit-scrollbar-thumb {
  background: rgba(254,227,103,0.2);
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: padding-box;
  transition: background 0.2s;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(254,227,103,0.4);
  border: 2px solid transparent;
  background-clip: padding-box;
}
::-webkit-scrollbar-corner {
  background: transparent;
}

.logo-img {
  height: 70px !important;
  width: auto;
  object-fit: contain;
  display: block;
}

.hero-header {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: var(--text-light);
}

/* Diaporama */
.slideshow {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
}

.slide {
  position: absolute;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: fade 20s infinite;
}

.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 10s; }

@keyframes fade {
  0%   { opacity: 0; }
  5%   { opacity: 1; }
  45%  { opacity: 1; }
  50%  { opacity: 0; }
  100% { opacity: 0; }
}

.joinbg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
}

.joinbgbg {
  position: absolute;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: fade 20s infinite;
}




/* Overlay fondu entre les images et le contenu */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to bottom, rgba(26, 26, 26, 0.2) 60%, var(--bg-dark) 100%);
  z-index: 1;
}

/* Contenu par-dessus */
.hero-header .navbar,
.hero-header .hero-content {
  position: relative;
  z-index: 2;
}


.hero h1,
.hero p {
  text-shadow: 0 3px 7px rgba(0, 0, 0, 0.4);
}


/* Navbar noire fixe */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #222;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--accent-yellow);
}

.nav-buttons a {
  margin-left: 25px;
  text-decoration: none;
  color: var(--text-light);
  transition: color 0.3s;
}

.nav-buttons a:hover {
  color: var(--accent-yellow);
}

/* Section centrale */
.hero {
  height: calc(100vh - 80px);
  padding-top: 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  z-index: 2;
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
}

.hero h1 {
    font-size: 37px; /* Par défaut c’est souvent 16px */

  margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);


}

.hero p {
    font-size: 20px; /* Par défaut c’est souvent 16px */

  margin-bottom: 2rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
}

.cta-button {
  position: relative;
  padding: 10px 20px;
  border-radius: 7px;
  border: 1px solid rgb(255, 219, 53);
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  background: transparent;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 0 0 0 transparent;
  transition: all 0.2s ease-in;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.cta-button:hover {
  background: rgb(255, 219, 53);
  box-shadow: 0 0 30px 5px rgba(255, 219, 53);
  transition: all 0.2s ease-out;
}

.cta-button:hover::before {
  animation: sh02 0.5s 0s linear;
}

.cta-button::before {
  content: '';
  display: block;
  width: 0px;
  height: 86%;
  position: absolute;
  top: 7%;
  left: 0%;
  opacity: 0;
  background: #fff;
  box-shadow: 0 0 50px 30px #fff;
  transform: skewX(-20deg);
}

@keyframes sh02 {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}

.cta-button:active {
  box-shadow: 0 0 0 0 transparent;
  transition: box-shadow 0.2s ease-in;
}


/* Contenu principal */
.main-content {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 60px 20px;
}

.features, .about {
  padding: 60px 20px;
  text-align: center;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.card {
  background-color: #222;
  padding: 30px;
  border-radius: 12px;
  width: 250px;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-10px);
  background-color: #333;
}

footer {
  padding: 20px;
  text-align: center;
  background-color: #111;
  color: #888;
}

.stats-features {
  background-color: #111; /* un noir un peu plus clair que le footer */
  color: var(--text-light);
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}



.stat-number:nth-child(1)::after {
  content: "+";
  margin-left: 2px;
  color: var(--accent-yellow);
  font-weight: 700;
}
.stat-number:nth-child(3)::after {
  content: "%";
  margin-left: 2px;
  color: var(--accent-yellow);
  font-weight: 700;
}

  #stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 40px;
    background: #111;
    color: #fff;
  }
  .stat {
    text-align: center;
  }
  .stat-number {
    font-size: 1px;
    font-weight: bold;
  }
  .stat-label {
    margin-top: 8px;
    font-size: 1px;
  }

.stats-container {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.stat {
  text-align: center;
  min-width: 150px;
}



.features-section {
  background: #0e0e0e;
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.features-title {
  font-size: 12.5rem;
  margin-bottom: 50px;
}

.features-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.feature-card {
  background: #1a1a1a;
  border-radius: 20px;
  padding: 30px 25px;
  width: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 142, 236, 0.25);
}

.feature-card .icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.5;
}



.features {
  padding: 80px 20px;
  background-color: #0f0f0f;
  color: white;
  text-align: center;
}

.features-title {
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgb(255, 219, 53);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  margin-bottom: 20px;
}


.feature-icon-img {
  max-height: 260px; /* Ajuste la taille ici */
  width: 120px;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.1)); /* ombre légère */
  transition: transform 0.3s ease;
}

/* Hide loader by default */
#loader {
  position: fixed;
  z-index: 9999;
  background: #fff;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}
#loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    height: 80px;
    background-color: #0f0f0f;
    border-bottom: 1px solid #2c2c2c;
}

.navbar-left,
.navbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar-right {
    margin-left: auto;
}

.login-button {
    background-color: #ffd700;
    color: #000;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.login-button:hover {
    background-color: #e6c200;
}

/* Style pour la carte de profil */
.profile-card {
    display: flex;
    align-items: center;
    background-color: #1e1e1e;
    padding: 8px 12px;
    border-radius: 12px;
    gap: 10px;
    color: white;
    font-size: 14px; /* <-- taille normale */
    font-weight: normal;
}
.profile-card img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}


.profile-card span {
    color: #fff;
    font-weight: 500;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    height: 80px;
    background-color: #0f0f0f;
    border-bottom: 1px solid #2c2c2c;
}

.navbar-left,
.navbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar-right {
    margin-left: auto;
}

.login-button {
    background-color: #ffd700;
    color: #000;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.login-button:hover {
    background-color: #e6c200;
}

/* Style pour la carte de profil */
.profile-card {
    display: flex;
    align-items: center;
    background-color: #1a1a1a;
    padding: 8px 12px;
    border-radius: 12px;
    gap: 10px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.profile-card img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-card span {
    color: #fff;
    font-weight: 500;
}


.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.feature-card p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.5;
}


.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-yellow);
  text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
}

.stat-label {
  margin-top: 10px;
  font-size: 1.2rem;
}

.features-container {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.feature {
  background-color: #222;
  border-radius: 10px;
  padding: 25px;
  width: 280px;
  box-shadow: 0 0 15px rgba(255, 219, 53, 0.3);
  transition: transform 0.3s ease;
  text-align: center;
}

.feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px rgba(255, 219, 53, 0.6);
}

.feature-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--accent-yellow);
  text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

.feature h3 {
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.feature p {
  font-size: 1rem;
  color: #ddd;
  line-height: 1.4;
}

.badge {
  position: relative;
  text-decoration: none;
  padding: 8px 16px;
  color: rgb(58, 58, 58);
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  background: rgba(255, 219, 53);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgb(252, 213, 42);

  border-radius: 999px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  user-select: none;
  margin-left: 12px; /* espace avec le logo */
  cursor: default;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
}

.badge span {
  width: 25px;
  height: 25px;
  position: absolute;
  top: -12px;
  right: -2px;
  transform: rotate(-20deg);
  filter: blur(0.5px);
}

.badge span:before,
.badge span:after {
  content: "";
  position: absolute;
}

.badge span:before {
  width: 1px;
  height: 100%;
  left: 12px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 255, 0.7),
    transparent
  );
}

.badge span:after {
  width: 100%;
  height: 1px;
  top: 12px;
  background: linear-gradient(
    to left,
    transparent,
    rgba(255, 255, 255, 0.7),
    transparent
  );
}

.badge:hover span:after,
.badge:hover span:before {
  display: block;
  animation: rotate 3s ease-in-out; /* Adjust timing as needed */
}

@keyframes rotate {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.8);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

.badge:before {
  content: "";
  position: absolute;
  z-index: -1;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px 0 rgba(105, 106, 111, 0.37);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  border-radius: 999px;
}

.badgedev {
  position: relative;
  text-decoration: none;
  padding: 8px 16px;
  color: rgb(255, 255, 255);
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  background: rgb(164, 53, 255);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgb(192, 42, 252);

  border-radius: 999px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  user-select: none;
  margin-left: 12px; /* espace avec le logo */
  cursor: default;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
}

.badgedev span {
  width: 25px;
  height: 25px;
  position: absolute;
  top: -12px;
  right: -2px;
  transform: rotate(-20deg);
  filter: blur(0.5px);
}

.badgedev span:before,
.badgedev span:after {
  content: "";
  position: absolute;
}

.badgedev span:before {
  width: 1px;
  height: 100%;
  left: 12px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 255, 0.7),
    transparent
  );
}

.badgedev span:after {
  width: 100%;
  height: 1px;
  top: 12px;
  background: linear-gradient(
    to left,
    transparent,
    rgba(255, 255, 255, 0.7),
    transparent
  );
}

.badgedev:hover span:after,
.badgedev:hover span:before {
  display: block;
  animation: rotate 3s ease-in-out; /* Adjust timing as needed */
}

@keyframes rotate {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.8);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

.badgedev:before {
  content: "";
  position: absolute;
  z-index: -1;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px 0 rgba(105, 106, 111, 0.37);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  border-radius: 999px;
}

.badgev1 {
  position: relative;
  text-decoration: none;
  padding: 8px 16px;
  color: rgb(255, 255, 255);
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  background: rgb(141, 53, 255);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgb(141, 53, 255);

  border-radius: 999px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  user-select: none;
  margin-left: 12px; /* espace avec le logo */
  cursor: default;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
}

.badgev1 span {
  width: 25px;
  height: 25px;
  position: absolute;
  top: -12px;
  right: -2px;
  transform: rotate(-20deg);
  filter: blur(0.5px);
}

.badgev1 span:before,
.badgev1 span:after {
  content: "";
  position: absolute;
}

.badgev1 span:before {
  width: 1px;
  height: 100%;
  left: 12px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 255, 0.7),
    transparent
  );
}

.badgev1 span:after {
  width: 100%;
  height: 1px;
  top: 12px;
  background: linear-gradient(
    to left,
    transparent,
    rgba(255, 255, 255, 0.7),
    transparent
  );
}

.badgev1:hover span:after,
.badgev1:hover span:before {
  display: block;
  animation: rotate 3s ease-in-out; /* Adjust timing as needed */
}

.badgev2 {
  position: relative;
  text-decoration: none;
  padding: 8px 16px;
  color: rgb(255, 255, 255);
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  background: rgb(255, 72, 0);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgb(245, 109, 56);

  border-radius: 999px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  user-select: none;
  margin-left: 12px; /* espace avec le logo */
  cursor: default;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
}

.badgev2 span {
  width: 25px;
  height: 25px;
  position: absolute;
  top: -12px;
  right: -2px;
  transform: rotate(-20deg);
  filter: blur(0.5px);
}

.badgev2 span:before,
.badgev2 span:after {
  content: "";
  position: absolute;
}

.badgev2 span:before {
  width: 1px;
  height: 100%;
  left: 12px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 255, 0.7),
    transparent
  );
}

.badgev2 span:after {
  width: 100%;
  height: 1px;
  top: 12px;
  background: linear-gradient(
    to left,
    transparent,
    rgba(255, 255, 255, 0.7),
    transparent
  );
}

.badgev2:hover span:after,
.badgev2:hover span:before {
  display: block;
  animation: rotate 3s ease-in-out; /* Adjust timing as needed */
}

@keyframes rotate {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.8);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

.badgev2:before {
  content: "";
  position: absolute;
  z-index: -1;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px 0 rgba(105, 106, 111, 0.37);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  border-radius: 999px;
}

.users-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  padding: 20px;
}

.user-card {
  background: #111;
  border: 1px solid #333;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
}
.user-card:hover {
  transform: scale(1.02);
}

.user-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.user-name {
  font-size: 18px;
  font-weight: bold;
  color: white;
}

.user-role {
  font-size: 14px;
  color: #ffca28;
  margin-bottom: 10px;
}

.user-trophies {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.trophy-icon {
  width: 24px;
  height: 24px;
}

/* From Uiverse.io by gharsh11032000 */ 
.logbtn {
  position: relative;
  display: inline-block;
  padding: 12px 24px;
  border: none;
  font-size: 16px;
  background-color: inherit;
  border-radius: 100px;
  font-weight: 600;
  color: #ffc107;
  box-shadow: 0 0 0 2px #ffc107;
  cursor: pointer;
  overflow: hidden;
  margin-right: 50px;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
  text-decoration: none;
}

.logbtn span:last-child {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: #ffc107;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.320, 1);
}

.logbtn span:first-child {
  position: relative;
  z-index: 1;
}

.logbtn:hover {
  box-shadow: 0 0 0 5px #ffc107;
  color: #ffffff;
}

.logbtn:active {
  scale: 0.95;
}

.logbtn:hover span:last-child {
  width: 170px;
  height: 170px;
  opacity: 1;
}

.navbtn1 {
  position: relative;
  display: inline-block;
  color: #ffc107;
  font-size: 15px;
  text-decoration: none;

}

.dashboard-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.profile-card {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 20px;
    max-width: 600px;
    margin-bottom: 20px;
}

.profile-card .profile-pic {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-right: 20px;
}

.profile-info h2 {
    margin: 0;
    font-size: 22px;
}

.profile-actions {
    margin-top: 10px;
}

.profile-actions .btn {
    background-color: #333;
    color: #fff;
    padding: 8px 15px;
    margin-right: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Kanit', sans-serif;
}

.profile-actions .btn:hover {
    background-color: #555;
}

.dashboard-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

