.LM2-modal {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
}

.LM2-hidden {
  display: none;
}

.LM2-modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 360px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.LM2-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

.LM2-modal-title {
  margin-top: 0;
  font-size: 22px;
  text-align: center;
}

.LM2-form {
  display: flex;
  flex-direction: column;
}

.LM2-input {
  width: 100%;
  margin-bottom: 12px;
  padding: 8px;
  box-sizing: border-box;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.LM2-btn-submit {
  width: 100%;
  padding: 10px;
  background-color: #007bff;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.LM2-btn-submit:hover {
  background-color: #0056b3;
}

.LM2-modal-footer {
  font-size: 14px;
  margin-top: 10px;
  text-align: center;
}
