/*
Login Modal
*/
/* Modal Background */
.myApp-custom-modal {
  display: none;
  position: fixed;
  z-index: 999999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

body {
  background-color: red;
}

/* Modal Content */
.myApp-modal-content {
  background: #fff;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  animation: myApp-fadeIn 0.3s ease-in-out;
}

/* Close Button */
.myApp-close-button {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  color: #333;
  cursor: pointer;
}

/* Trigger Button */
.myApp-open-button {
  padding: 10px 20px;
  border: none;
  background: #007bff;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.myApp-open-button:hover {
  background: #0056b3;
}

.myprofile .outer-content {
  display: flex;
}
.myprofile .outer-content .sidebar {
  width: 25%;
  background-color: #f4f4f4;
  border-right: 1px solid #ddd;
  padding: 20px;
}
.myprofile .outer-content .sidebar ul {
  list-style-type: none;
  padding: 0;
}
.myprofile .outer-content .sidebar li {
  margin-bottom: 10px;
}
.myprofile .outer-content .sidebar button {
  background-color: #f09204;
  color: white;
  border: none;
  padding: 10px 15px;
  width: 100%;
  text-align: left;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
  font-size: 13px;
}
.myprofile .outer-content .sidebar button.active {
  background-color: #905b0a;
}
.myprofile .outer-content .sidebar .content {
  width: 75%;
  padding: 20px;
}
.myprofile .outer-content .sidebar .tab-content {
  display: none;
}
.myprofile .outer-content .sidebar .tab-content.active {
  display: block;
}

.myprofile .form-group {
  margin-bottom: 15px;
}
.myprofile label {
  display: block;
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 16px;
}
.myprofile input, .myprofile select, .myprofile .radio-group, .myprofile .languages-select {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
}
.myprofile .radio-group {
  display: flex;
  gap: 15px;
}
.myprofile .languages-select {
  display: flex;
  justify-content: space-between;
}
.myprofile select[multiple] {
  height: 100px;
}
.myprofile .submit-btn {
  background-color: #28a745;
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
}
.myprofile .dosh-options {
  display: none; /* Hide by default */
  margin-top: 10px;
}

.myprofile .education_form_wrapper h2 {
  color: white;
  padding: 10px 0px;
  border-radius: 5px;
}
.myprofile .education_form_wrapper label {
  font-weight: 500;
}
.myprofile .education_form_wrapper .mandatory {
  color: red;
}
.myprofile .education_form_wrapper input, .myprofile .education_form_wrapper select {
  width: 100%;
  padding: 8px;
  margin: 5px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.myprofile .education_form_wrapper .radio-group {
  display: flex;
  gap: 10px;
}
.myprofile .education_form_wrapper .radio-group label {
  font-weight: normal;
}
.myprofile .education_form_wrapper .save-btn {
  background-color: limegreen;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.myprofile .family_details_form_wrapper .form-group {
  margin-bottom: 15px;
}
.myprofile .family_details_form_wrapper label {
  font-weight: 500;
}
.myprofile .family_details_form_wrapper input, .myprofile .family_details_form_wrapper select, .myprofile .family_details_form_wrapper textarea {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.myprofile .family_details_form_wrapper .radio-group {
  display: flex;
  gap: 15px;
  margin-top: 5px;
}
.myprofile .family_details_form_wrapper .save-button {
  background-color: #8CC63F;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}
.myprofile .family_details_form_wrapper .save-button:hover {
  background-color: #7AB530;
}

.myprofile .hobbies_form_wrapper .section-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.myprofile .hobbies_form_wrapper .icon {
  margin-right: 10px;
}
.myprofile .hobbies_form_wrapper .checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0 15px;
  margin-bottom: 15px;
}
.myprofile .hobbies_form_wrapper .checkbox-group label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 400;
}
.myprofile .hobbies_form_wrapper input[type=text] {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.myprofile .hobbies_form_wrapper .section-title {
  font-weight: 500;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.myprofile .hobbies_form_wrapper .icon {
  margin-right: 10px;
}
.myprofile .hobbies_form_wrapper .checkbox-group {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.myprofile .hobbies_form_wrapper .checkbox-group label {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.myprofile .hobbies_form_wrapper input[type=text] {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.myprofile .hobbies_form_wrapper .button-group {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.myprofile .hobbies_form_wrapper .button {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
}
.myprofile .hobbies_form_wrapper .clear {
  background-color: #fff;
  border: 1px solid #ccc;
}
.myprofile .hobbies_form_wrapper .save {
  background-color: #8BC34A;
  color: white;
}

/* Fade-in animation */
@keyframes myApp-fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/*Login Modal END *//*# sourceMappingURL=jsm_style.css.map */