.mobile-app {
  padding: 0;
  margin: 0;
}

.mobile-header {
  position: sticky;
  top: 0;
  background: var(--color-primary);
  padding: 16px;
  font-size: 20px;
  font-weight: bold;
  border-bottom: 1px solid #eee;
  text-align: center;
  z-index: 10;
  margin-bottom: 8px
}

.card {
  background: white;
  padding: 14px;
  margin-bottom: 8px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.actions {
  display: flex;
  gap: 8px;
}

.action-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 0.5px solid var(--color-border-secondary);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-primary);
}

.action-btn:hover {
  background: var(--color-background-secondary);
}

/* variante destructive */
.action-btn.danger:hover {
  color: var(--color-text-danger);
  border-color: var(--color-border-danger);
  background: var(--color-background-danger);
}

/* Mobile section */
.section {
  padding: 1rem 1rem;
}
.fab {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #3273dc;
  color: white;
  font-size: 28px;
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 1100; /* au-dessus de la nav */
}

.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: white;
  border-top: 1px solid #ddd;
  box-shadow: 0 -2px 4px rgba(0,0,0,0.1);
  z-index: 1000;
}

.mobile-bottom-nav a {
  text-decoration: none;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mobile-bottom-nav a span {
  font-size: 26px;   /* taille des icônes */
}

.mobile-bottom-nav a small {
  font-size: 11px;   /* taille du texte */
  margin-top: 3px;
}