
.messageModal {
  border: none;
  border-radius: 10px;
  padding: 0;
  max-width: 500px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  background: #2c3e50; /* Dark blue-gray background */
}

.message-modal-body {
  padding: 20px;
  color: #ecf0f1; /* Light gray text */
}

.message-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #34495e; /* Slightly lighter border */
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.message-modal-title {
  font-size: 1.5rem;
  margin: 0;
  color: #ffffff; /* White title text */
}

.message-modal-close-btn {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #ecf0f1;
  padding: 0;
  line-height: 1;
}

.message-modal-close-btn:hover {
  color: #c0392b; /* Red color on hover */
}

.message-modal-text {
  font-size: 1.1rem;
  line-height: 1.6;
}
