
/* ===== Custom Mobile Menu (zonder Bootstrap) ===== */
.mobile-menu {
  background-color: #1d3557;
  color: white;
  width: 100%;
  z-index: 9999;
  position: relative;
  font-family: 'Montserrat', sans-serif;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.mobile-brand {
  font-weight: bold;
  font-size: 1.25rem;
  color: white;
}

.mobile-toggle {
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

.mobile-menu-content {
  display: none;
  flex-direction: column;
  padding: 0.5rem 1rem 1rem 1rem;
  background-color: #1d3557;
}

.mobile-menu.open #mobileMenuContent {
  display: flex;
}

.mobile-link {
  color: #f1faee;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: background-color 0.3s, color 0.3s;
}

.mobile-link:hover {
  background-color: rgba(255,255,255,0.1);
  color: #FF5571;
}

.tools-link {
  background-color: #FF5571;
  color: white !important;
  padding: 12px;
  font-weight: bold;
  border-radius: 0;
  margin-bottom: 0.5rem;
  display: block;
}

.tools-link:hover {
  background-color: #C71D73;
  color: white !important;
}

.mobile-user-menu {
  background-color: #f2f2f2;
  color: #123D60;
  border-radius: 6px;
  margin-top: 1rem;
  padding: 1rem;
}

.mobile-user-menu a {
color:#000;
font-weight:300;
display:block;
}

.mobile-user-title {
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.mobile-button {
  display: block;
  width: 100%;
  padding: 10px;
  margin-top: 0.5rem;
  font-weight: 600;
  text-align: center;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.95rem;
  text-decoration: none;
}

.mobile-button.logout {
  background-color: transparent;
  color: #dc3545;
  border: 1px solid #dc3545;
}

.mobile-button.logout:hover {
  background-color: #dc3545;
  color: white;
}

.mobile-button.login {
  background-color: transparent;
  border: 1px solid #FF5571;
  color: #FF5571;
}

.mobile-button.login:hover {
  background-color: #FF5571;
  color: white;
}

.mobile-button.register {
  background-color: #FF5571;
  color: white;
}

.mobile-button.register:hover {
  background-color: #C71D73;
}
