/* Message Box Styling */
.message-box {
  width: 120px;
  height: 120px;
  background-color: #003366; /* Dark blue background */
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 8px;
  padding: 10px;
  box-sizing: border-box;
  margin: 0 auto;
  overflow: hidden;
}

#rotating-message {
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
  opacity: 1;
  transition: opacity 1s ease-in-out;
}

/* Fade out class */
#rotating-message.fade-out {
  opacity: 0;
}

