.modal-message {
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Fondo semitransparente */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-message h2 {
  font-size: 20px;
  margin-bottom: 20px;
}

.modal-message-content {
  background-color: #3451A3;
  padding: 20px;
  border-radius: 10px;
  width: 400px;
  text-align: center;
  color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.close-modal-message {
  float: right;
  font-size: 20px;
  cursor: pointer;
}

.message-action {
  display: flex;
  flex-direction: row;
  margin-top: 15px;
}

.message-action button {
  width: 150px;
  background-color: #628B35;
  padding: 5px 8px;
  color: #fff;
  border-radius: 50px;
  margin: 0 auto;
}

@media (max-width: 768px) { 
  .modal-message-content {
    background-color: #3451A3;
    width: 300px;
    max-height: 90vh;
    overflow-y: auto;
  }
}