.NoteModal .modal-content {
  border: none;
  border-radius: 16px;
  overflow: hidden;
}

.NoteModal .modal-header {
  border-bottom: 1px solid #eee;
  padding: 18px 20px;
}

.NoteModal .modal-title {
  font-size: 20px;
  font-weight: 700;
  color: #202020;
}

.NoteModal .modal-body {
  padding: 20px;
}

.NoteModal textarea.form-control {
  min-height: 140px;
  resize: none;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 14px;
  padding: 12px;
}

.NoteModal textarea.form-control:focus {
  box-shadow: none;
  border-color: #75438e;
}

.NoteModal .submit_btn_holder {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

@media (max-width: 575px) {
  .NoteModal .modal-title {
    font-size: 18px;
  }

  .NoteModal .modal-body {
    padding: 15px;
  }

  .NoteModal textarea.form-control {
    min-height: 120px;
  }
}
