
.rml_form-container {
  max-width: 400px;
  margin: 50px auto;
  background: #fff;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.rml_form-container h2 {
  margin-bottom: 20px;
  text-align: center;
  color: #333;
}

.rml_form-container .form-group {
  margin-bottom: 15px;
}

.rml_form-container label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.rml_form-container input[type="text"],
.rml_form-container input[type="file"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.rml_form-container button {
  width: 100%;
  padding: 12px;
  background-color: #007bff;
  color: white;
  border: none;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}

.rml_form-container button:hover {
  background-color: #0056b3;
}

.rml_form-container #ajax-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7); /* semi-transparent white */
  z-index: 9999; /* high enough to appear on top */
  display: flex;
  align-items: center;
  justify-content: center;
}

.rml_form-container #ajax-loader img {
  width: 100px;  /* increase as needed */
  height: 100px;
}

.rml_modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
}

.rml_modal .modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 20px;
  border-radius: 5px;
  width: 400px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  position: relative;
}

.rml_modal .close-btn {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 10px;
}

.rml_modal .close-btn:hover,
.rml_modal .close-btn:focus {
  color: black;
  text-decoration: none;
}


#swal2-title {
    line-height: 36px;
}
.swal2-confirm.swal2-styled {
    line-height: 24px;
}