.message_notification-mobile {
  display: none;
}

.flash-floating {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: rgb(236, 239, 202);
  font-family: 'Poppins', sans-serif;
  color: rgb(24, 59, 78);
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  max-width: 300px;
  text-align: left;
  animation: slideInRight 0.2s ease-out;
  display: flex;
  align-items: center;
  gap: 10px;
}

.flash-close {
  background: none;
  border: none;
  color: rgb(24, 59, 78);
  font-size: 18px;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideOutRight {
  to {
    opacity: 0;
    transform: translateX(20px);
  }
}

@media (max-width: 900px) {
  .message_notification-default {
    display: none;
  }

  .message_notification-mobile {
    display: flex;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateX(-50%) translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }
  }

  .flash-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transform: translateX(-50%);
    background: rgb(24, 59, 78, 0.98);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-width: 90%;
    text-align: center;
    animation: slideDown 0.3s ease-out;
    display: flex;
    align-items: center;
    gap: 10px;
  }
}