/* Styles communs pour le menu */
nav {
  font-size: 0.9rem !important;
}

nav .text-6xl {
  font-size: 1.5rem !important;
}

nav .text-3xl {
  font-size: 1.2rem !important;
}

nav .text-lg {
  font-size: 0.9rem !important;
}

#menu-links a, #mobile-menu a {
  font-size: 2rem !important;
}

/* Styles communs */
.bg-blue-500 {
  background-color: #3b82f6;
}

.text-white {
  color: #ffffff;
}

.hover\:underline:hover {
  text-decoration: underline;
}

/* Autres styles communs */
body {
  background-color: #f3f4f6;
  color: #1f2937;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hidden {
  display: none;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.space-x-6 > :not(:last-child) {
  margin-right: 1.5rem;
}

.space-y-2 > :not(:last-child) {
  margin-bottom: 0.5rem;
}

.p-4 {
  padding: 1rem;
}

.mt-4 {
  margin-top: 1rem;
} 