/* /css/style.css */
#message-container {
    display: none;
    background-color: #fbd972;
    color: #003865;
    padding: 10px 15px;
    margin: 0;
    border-radius: 0;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* Add a media query for mobile devices */
@media (max-width: 768px) { /* This targets screens with a width of 768px or less */
    #message-container {
        padding-top: 30px !important; /* This sets the top margin to 30px on mobile devices */
    }
}

/* Add this to your CSS file */
.blinking-dot {
  animation: blink-animation 1s steps(5, start) infinite;
  -webkit-animation: blink-animation 1s steps(5, start) infinite;
}

@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
@-webkit-keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
