body {
      background: linear-gradient(to right, #f3f4f6, #e2e8f0);
      font-family: 'Segoe UI', sans-serif;
    }

    .menu-header {
      margin-top: 40px;
      margin-bottom: 30px;
      text-align: center;
    }

    .menu-icon {
      font-size: 60px;
      color: #c20d0d;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.1); opacity: 0.7; }
      100% { transform: scale(1); opacity: 1; }
    }

    .menu-title {
      font-weight: bold;
      font-size: 2rem;
      color: #d80c0c;
    }

    .card-style {
      background-color: white;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      padding: 20px;
    }

    th {
      background-color: #d80c0c !important;
      color: white !important;
    }

    td, th {
      vertical-align: middle;
    }

    tr:active {
      background-color: #e6ffee !important;
    }

    .btn-order {
      border-radius: 20px;
      font-size: 0.9rem;
      padding: 6px 14px;
    }

    .whatsapp-btn-fixed {
      display: none; /* Retiré car chaque ligne a son bouton */
    }

    .logo-animated {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.fade-in {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}