.utility-bar {
  overflow: hidden;
  background-color: #b7a887 !important;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  font-family: inherit; /* Usa fonte do tema */
}

.message-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 24px;
  overflow: hidden;
}

.message {
  position: absolute;
  width: 100%;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 400;
  color: #fff;
  opacity: 0;
  transform: translateX(100%);
  white-space: nowrap;
  transition: none;
}

/* Animação para a mensagem ativa */
.message.active {
  animation: slideIn 0.6s ease forwards;
  z-index: 1;
}

/* Keyframe da direita para o centro */
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
