
.fixed-message {
  position: fixed;
  top: 56px; /* o la altura real de tu navbar */
  left: 0;
  width: 100%;
  z-index: 1055;
}


.absolute-message {
  position: fixed;
  top: 0; /* arriba del todo */
  left: 0;
  width: 100%;
  z-index: 1055;
}

ul.messagelist {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul.messagelist li {
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  border-bottom: 1px solid #ccc;
}

ul.messagelist li.success {
  background: #dfd; /* similar al admin */
}

ul.messagelist li.error {
  background: #ffc8c8;
}

ul.messagelist li.warning {
  background: #eaa86b;
}

ul.messagelist li.info {
  background: #7dacda;
}

.close-message {
  background: none;
  border: none;
  font-size: 15px;
  
  color: #000000;
  float: right;
  cursor: pointer;
}

.messagelist li {
  position: relative;
  transition: opacity 0.5s ease-out;
}
