* {
  padding: 0;
  box-sizing: border-box;
  font-family: 'Product Sans', sans-serif;
}


body {
    background-color: white; /* ou #f5f5f5 */
    min-height: 100vh;       /* au lieu de height:100vh */
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}


.navbar-brand { 
    font-weight: bold; 
    font-size: 1.5rem; 
}

.btn.btn-login {
  background-color: #FF5757;
  color: #fff; /* texte blanc */
  border: none;
}
.btn.btn-login:hover {
  background-color: #FF3131;
  color: #fff; /* texte blanc */
}


footer { 
    background: #013759;
    color: white; 
    padding: 30px 0; 
}

.text-muted {
    color: white !important;
}

.blink {
  animation: blink-animation 1s infinite;
}

@keyframes blink-animation {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}

.points-refresh i {
  color: gold;
  margin-right: 5px;
}


.points-refresh:hover {
  background-color: #fffbe6;
  transition: background-color 0.2s ease;
}

/* PAGE DETAIL COMMANDE */
  .timeline {
    position: relative;
    padding-left: 2rem;
    margin-left: 1rem;
    border-left: 3px solid #28a745;
  }

  .timeline-step {
    position: relative;
    margin-bottom: 2rem;
  }

  .timeline-step::before {
    content: "";
    position: absolute;
    left: -1.25rem;
    top: 0;
    width: 14px;
    height: 14px;
    background-color: #28a745;
    border: 2px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 3px #28a74533;
  }

  .timeline-step .date {
    font-size: 0.85rem;
    color: #888;
    margin-top: 0.25rem;
  }

  .timeline-step .commentaire {
    font-size: 0.9rem;
    color: #555;
    margin-top: 0.5rem;
  }

  @media (max-width: 576px) {
    .timeline {
      border-left: 2px solid #28a745;
      padding-left: 1rem;
    }
    .timeline-step::before {
      left: -1rem;
    }
  }
