.custom-delivery-notice {
  margin-top: 10px;
  padding: 8px 12px;
  background-color: #fff3cd;
  border: 2px solid #ffc107;
  border-radius: 5px;
  font-weight: bold;
  font-size: 14px; /* Redus de la 16px la 14px */
  color: #856404;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
  animation: pulse 2s infinite;
  max-width: 90%; /* Limitează lățimea */
  margin-left: auto;
  margin-right: auto;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.4);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(255, 193, 7, 0); /* Redus de la 10px la 6px */
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
  }
}

