body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  background-color: #f4f6f9;
  color: #333;
}

.content {
  max-width: 1200px;
  margin: auto;
  padding: 20px; /* était peut-être plus petit avant */
}

.login-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f4f6f9;
}

.login-box {
  background: white;
  padding: 30px 40px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  max-width: 400px;
  width: 100%;
}

.login-box h1 {
  text-align: center;
  color: #003366;
  margin-bottom: 10px;
}

.login-box p {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.login-box form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.login-box label {
  font-weight: bold;
  font-size: 14px;
}

.login-box input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

.login-box button {
  background-color: #003366;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s ease;
}

.login-box button:hover {
  background-color: #0055a5;
}

.hero {
  width: 100%;
  height: 200px; /* ajuste la hauteur à ton goût */
  background: url('logos/hall-of-fame-banner.jpg') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.hero h1 {
  font-size: 2em;
  margin: 0;
}

td {
  font-size: 14px;
  padding: 6px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  text-align: center;
}

table tr:nth-child(even) {
/*
  background-color: #eef3f7;
*/
}

table tr:hover {
/*
  background-color: #dde8f1;
*/
}

table tr td.qualifs {
  border-bottom: 1px solid #ccc;
}

.topnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #003366;
  padding: 10px;
  color: white;
}

.topnav .logo {
  font-weight: bold;
  font-size: 18px;
}

.topnav .menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

.topnav ul {
  list-style: none;
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.topnav ul li a {
  color: white;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 4px;
}

.topnav ul li a:hover,
.topnav ul li a.active {
  background-color: #0055a5;
}

/* Mobile */
@media (max-width: 768px) {
  .topnav ul {
    display: none;
    flex-direction: column;
    background-color: #003366;
    position: absolute;
    top: 60px;
    right: 10px;
    width: 150px;
    padding: 10px;
    border-radius: 4px;
  }

  .topnav .menu-toggle {
    display: block;
  }

  .topnav ul.show {
    display: flex;
  }
}

.btnClub {
  width: auto;
  min-width: 100px;
  height: 30px;
  background: #A2C9F5;
  display: inline-block;
  text-align: center;
  line-height: 30px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  color: #000;
  font-size: 14px;
  padding: 0 16px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btnClub:hover {
  background-color: #5cbf2a;
  color: #fff;
}
.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  padding: 16px;
  text-align: left; /* <-- ici */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.card img {
  max-width: 80px;
  margin-bottom: 10px;
}

.card h3 {
  font-size: 16px;
  margin: 10px 0;
  color: #003366;
}

.card p {
  font-size: 14px;
  margin: 4px 0;
  color: #555;
}

.emoji {
    font-size: 1.62rem;
    line-height: 1;
    vertical-align: middle;

}

/* dans un <style> dans ta page ou ton CSS global */
.scrollbar-large::-webkit-scrollbar {
  height: 12px; /* largeur de la barre pour scroll horizontal */
}

.scrollbar-large::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.scrollbar-large::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 6px;
}

.scrollbar-large::-webkit-scrollbar-thumb:hover {
  background: #888;
}



