/*!******************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./shared/styles/main.scss ***!
  \******************************************************************************************************************/
@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css);
/*!**********************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./shared/styles/main.scss (1) ***!
  \**********************************************************************************************************************/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  font-family: "Merriweather", serif;
  line-height: 1.6;
  background-color: #fbfaf9;
  color: #0f202a;
}
@media (min-width: 1441px) {
  body {
    font-size: 18px;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Jomolhari", serif;
  margin-top: 0;
}

a {
  color: #3b4c54;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.margin-zero {
  margin: 0 !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.navigation-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  color: #0f202a;
}
.navigation-loading p {
  margin: 15px 0 0 0;
  font-size: 16px;
  color: #666;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #3b4c54;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.header {
  background-color: #3b4c54;
  width: 100%;
  padding: 32px 0;
  padding: 16px 0;
  color: #ffffff;
  min-height: 60px;
  display: flex;
  align-items: center;
}
.header-content {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3%;
  width: 100%;
}
@media (min-width: 1441px) {
  .header-content {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 769px) {
  .header-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
  .header-content .header-left {
    justify-self: start;
  }
  .header-content .logo {
    justify-self: center;
  }
  .header-content .header-right {
    justify-self: end;
  }
}
@media (max-width: 768px) {
  .header-content {
    display: flex;
    justify-content: space-between;
  }
  .header-content .header-left {
    display: none;
  }
}

.header-left {
  display: flex;
  align-items: center;
}

.header-right {
  display: flex;
  align-items: center;
  min-height: 40px;
}

.members-button {
  background-color: #fbfaf9;
  color: #3b4c54;
  border: 1px solid #fbfaf9;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-family: "Merriweather", serif;
  font-size: 12px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.members-button:hover {
  background-color: #cfc6bd;
  color: #0f202a;
}

.user-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  min-height: 32px;
}
.user-profile-placeholder {
  min-width: 120px;
}
.user-profile-loading {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
}
.user-profile-logged-out {
  display: flex;
  align-items: center;
  min-width: 120px;
}
.user-profile-login {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
.user-profile .user-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 768px) {
  .user-profile .user-info {
    display: none;
  }
}
.user-profile .user-email {
  font-weight: 500;
}
.user-profile .user-role {
  font-size: 10px;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.user-profile .user-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.user-profile .profile-link-btn {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-family: "Merriweather", serif;
  font-size: 12px;
  transition: all 0.3s ease;
}
.user-profile .profile-link-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 768px) {
  .user-profile .profile-link-btn {
    padding: 6px 8px;
    font-size: 11px;
  }
}

.login-button {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-family: "Merriweather", serif;
  font-size: 12px;
  transition: all 0.3s ease;
}
.login-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 768px) {
  .login-button {
    padding: 6px 12px;
    font-size: 11px;
  }
}

.login-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1001;
}

.login-modal {
  background: white;
  border-radius: 8px;
  padding: 30px;
  max-width: 400px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .login-modal {
    padding: 20px;
    max-width: 350px;
  }
}

.login-modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-modal-close:hover {
  color: #333;
}

.footer {
  background-color: #f2f0ed;
  width: 100%;
  padding: 32px 0;
  text-align: center;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3%;
}
@media (min-width: 1441px) {
  .footer-content {
    max-width: 1600px;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
  }
}

.page-layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 3%;
}
@media (min-width: 1441px) {
  .main-container {
    padding-left: 0;
    padding-right: 0;
  }
}
.main-container.wide {
  max-width: none;
  margin: 0;
  padding: 0;
}

.content {
  padding: 32px 0;
}
.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-family: "Jomolhari", serif;
  font-size: 24px;
}
.logo--footer {
  font-size: 24px;
}
@media (min-width: 1441px) {
  .logo--footer {
    font-size: 40px;
  }
}

.button, .modal-submit-button, .members-button, .submit-button {
  border-radius: 4px;
  cursor: pointer;
  font-family: "Merriweather", serif;
  transition: 0.3s ease;
  border: none;
}
.button--primary, .modal-submit-button, .submit-button {
  background-color: #3b4c54;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: "Merriweather", serif;
  transition: background-color 0.3s ease;
}
.button--primary:hover, .modal-submit-button:hover, .submit-button:hover {
  background-color: #2a3a42;
}
.button--secondary, .members-button {
  background-color: #fbfaf9;
  color: #3b4c54;
  border: 1px solid #fbfaf9;
  border-radius: 4px;
  cursor: pointer;
  font-family: "Merriweather", serif;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.button--secondary:hover, .members-button:hover {
  background-color: #cfc6bd;
  color: #0f202a;
}
.button--small, .modal-submit-button, .members-button {
  padding: 6px 12px;
  font-size: 12px;
}
.button--medium {
  padding: 12px 24px;
  font-size: 16px;
}
.button--large, .submit-button {
  padding: 12px 24px;
  font-size: 16px;
  width: 100%;
  margin-top: 16px;
}
.button:disabled, .modal-submit-button:disabled, .members-button:disabled, .submit-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.modal-submit-button {
  padding: 8px 16px;
  font-size: 14px;
}

.modal {
  display: flex;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}
.modal-content {
  background-color: #fbfaf9;
  border: 1px solid #cfc6bd;
  border-radius: 5px;
  padding: 24px;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  position: relative;
  margin: auto;
  display: flex;
  flex-direction: column;
}
.modal-content--wide {
  max-width: 800px;
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px 0 24px;
  flex-shrink: 0;
}
.modal-body {
  padding: 20px 24px 24px 24px;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
}
.modal .close {
  color: #3b4c54;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: all 0.2s ease;
}
.modal .close:hover, .modal .close:focus {
  color: #0f202a;
  background: rgba(0, 0, 0, 0.1);
}
.modal-title {
  font-family: "Jomolhari", serif;
  font-size: 24px;
  margin-bottom: 16px;
  margin-top: 0;
}
.modal .modal-form-group {
  margin-bottom: 16px;
}
.modal .modal-form-group label {
  display: block;
  margin-bottom: 8px;
}
.modal .modal-form-group input {
  width: 100%;
  padding: 8px;
  border: 1px solid #cfc6bd;
  border-radius: 4px;
  font-family: "Merriweather", serif;
}

@media (max-width: 768px) {
  .modal {
    padding: 10px;
  }
  .modal-content {
    width: 95%;
    max-width: none;
    max-height: 95vh;
  }
  .modal-content--wide {
    max-width: none;
  }
  .modal-header {
    padding: 16px 20px 0 20px;
  }
  .modal-body {
    padding: 16px 20px 20px 20px;
  }
  .modal-title {
    font-size: 20px;
  }
}
.thank-you-content {
  text-align: center;
  max-width: 400px;
}
.thank-you-content .thank-you-icon {
  font-size: 48px;
  color: #3b4c54;
  margin-bottom: 16px;
}
.thank-you-content .thank-you-icon.icon--large {
  font-size: 48px;
}
.thank-you-content .thank-you-message {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.login-form {
  color: #0f202a;
}
.login-form h3 {
  margin-bottom: 16px;
  color: #3b4c54;
  font-size: 18px;
}
.login-form .form-group {
  margin-bottom: 20px;
}
.login-form .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 14px;
  color: #0f202a;
}
.login-form .form-group input[type=email] {
  width: 100%;
  padding: 12px;
  border: 1px solid #cfc6bd;
  border-radius: 4px;
  font-size: 14px;
  font-family: "Merriweather", serif;
  transition: border-color 0.3s ease;
}
.login-form .form-group input[type=email]:focus {
  outline: none;
  border-color: #3b4c54;
  box-shadow: 0 0 0 2px rgba(59, 76, 84, 0.1);
}
.login-form .form-group input[type=email]:disabled {
  background-color: #f5f5f5;
  cursor: not-allowed;
}
.login-form .form-group input[type=email]::placeholder {
  color: #999;
}
.login-form .submit-button {
  width: 100%;
  background-color: #3b4c54;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 4px;
  font-size: 14px;
  font-family: "Merriweather", serif;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.login-form .submit-button:hover:not(:disabled) {
  background-color: rgb(37.958041958, 48.8951048951, 54.041958042);
}
.login-form .submit-button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}
.login-form .login-help {
  margin-top: 16px;
  font-size: 12px;
  color: #666;
  text-align: center;
  line-height: 1.4;
}
.login-form .email-sent-message {
  text-align: center;
}
.login-form .email-sent-message h3 {
  color: #4CAF50;
  margin-bottom: 12px;
}
.login-form .email-sent-message p {
  margin-bottom: 12px;
  line-height: 1.5;
}
.login-form .email-sent-message p strong {
  color: #3b4c54;
}
.login-form .email-sent-message .resend-button {
  background-color: transparent;
  color: #3b4c54;
  border: 1px solid #3b4c54;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.login-form .email-sent-message .resend-button:hover:not(:disabled) {
  background-color: #3b4c54;
  color: white;
}
.login-form .email-sent-message .resend-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.login-form .quota-exceeded-message {
  text-align: center;
}
.login-form .quota-exceeded-message h3 {
  color: #FF9800;
  margin-bottom: 12px;
}
.login-form .quota-exceeded-message p {
  margin-bottom: 12px;
  line-height: 1.5;
}
.login-form .quota-exceeded-message .back-button {
  background-color: transparent;
  color: #3b4c54;
  border: 1px solid #3b4c54;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.login-form .quota-exceeded-message .back-button:hover {
  background-color: #3b4c54;
  color: white;
}

.hero {
  background-color: #f2f0ed;
  width: 100%;
  padding: 32px 0;
  padding: 64px 0;
}
.hero-content {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 3%;
  text-align: center;
}
@media (min-width: 1441px) {
  .hero-content {
    padding-left: 0;
    padding-right: 0;
  }
}
.hero-title {
  font-family: "Jomolhari", serif;
  font-size: 36px;
  margin-bottom: 16px;
}
@media (min-width: 1441px) {
  .hero-title {
    font-size: 48px;
  }
}
.hero-subtitle {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}
@media (min-width: 1441px) {
  .hero-subtitle {
    font-size: 24px;
    max-width: 800px;
  }
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
  gap: 32px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1 1 300px;
  min-width: 250px;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  font-size: 48px;
  color: #3b4c54;
  margin-bottom: 16px;
}

.feature-card .card-title {
  margin-bottom: 12px;
}

.feature-card .card-content {
  font-size: 14px;
  line-height: 1.6;
}

.application-form {
  background-color: #f2f0ed;
  padding: 32px;
  border-radius: 5px;
  margin-top: 32px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-family: "Jomolhari", serif;
  font-size: 24px;
  margin-bottom: 16px;
}
@media (min-width: 1441px) {
  .section-title {
    font-size: 36px;
  }
}

.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}
.form-group .form-input {
  width: 100%;
  padding: 12px;
  border: 1px solid #cfc6bd;
  border-radius: 4px;
  font-family: "Merriweather", serif;
  font-size: 14px;
  color: #3b4c54;
  background-color: #fbfaf9;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.radio-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: normal;
  color: #3b4c54;
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 768px) {
  .checkbox-group {
    flex-direction: column;
    gap: 0;
  }
}

.checkbox-column {
  flex: 1 1 150px;
  min-width: 150px;
}
@media (max-width: 768px) {
  .checkbox-column {
    flex: 1 1 auto;
    min-width: 100%;
  }
}
.checkbox-column label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: normal;
  color: #3b4c54;
}

.testimonial {
  display: none;
  background-color: #f2f0ed;
  width: 100%;
  padding: 32px 0;
  margin-top: 32px;
  border-radius: 5px;
}
.testimonial-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 3%;
}
@media (min-width: 1441px) {
  .testimonial-content {
    max-width: 1000px;
  }
}
.testimonial-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 16px;
}
.testimonial-name {
  font-family: "Jomolhari", serif;
  font-size: 24px;
  margin-bottom: 8px;
}
.testimonial-title {
  font-size: 18px;
  color: #3b4c54;
  margin-bottom: 8px;
}
.testimonial-education {
  font-size: 16px;
  color: #3b4c54;
  margin-bottom: 24px;
}
.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
  font-style: italic;
}
/*!****************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./shared/components/profile/Profile.module.css ***!
  \****************************************************************************************************************************/
/* Profile CSS Module - Fluid Responsive Design */
.Profile-module__profileWrapper___VlUXp {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 3%;
  font-family: 'Merriweather', serif;
  background: #fbfaf9;
  min-height: 100vh;
}

/* Reduce padding as screen gets larger */
@media (min-width: 768px) {
  .Profile-module__profileWrapper___VlUXp {
    padding: 0 4%;
  }
}

@media (min-width: 1200px) {
  .Profile-module__profileWrapper___VlUXp {
    padding: 0 5%;
  }
}

@media (min-width: 1600px) {
  .Profile-module__profileWrapper___VlUXp {
    padding: 0 8%;
  }
}

.Profile-module__profileContainer___m8daG {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(59, 76, 84, 0.08);
  overflow: hidden;
  border: 1px solid #f2f0ed;
  margin: 32px 0;
}

/* Profile Header */
.Profile-module__profileHeader____WbLT {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 40px 48px;
  background: white;
  border-bottom: 1px solid #f2f0ed;
}

.Profile-module__profileAvatar___REH1p {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  background: #3b4c54;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.Profile-module__profileAvatar___REH1p img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.Profile-module__avatarPlaceholder___NB0Kr {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  font-weight: 600;
  font-family: 'Jomolhari', serif;
}

.Profile-module__profileInfo___E5N0Y {
  flex: 1;
  min-width: 0;
}

.Profile-module__profileName___lPfE2 {
  margin: 0 0 8px 0;
  font-size: 28px;
  font-weight: 400;
  font-family: 'Jomolhari', serif;
  color: #3b4c54;
  line-height: 1.2;
}

.Profile-module__profileDescription___uxj31 {
  margin: 8px 0 0 0;
  color: #5a5a5a;
  font-size: 16px;
  line-height: 1.4;
}

.Profile-module__profileMeta___oKpiI {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.Profile-module__location___laXOp {
  color: #5a5a5a;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.Profile-module__location___laXOp::before {
  content: "📍";
  margin-right: 4px;
}

.Profile-module__role___WYANw {
  color: #5a5a5a;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 500;
  background: #f2f0ed;
  padding: 2px 8px;
  border-radius: 12px;
}

.Profile-module__profileTags___VIk8c {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.Profile-module__profileTag___Fjom6 {
  background: #f2f0ed;
  color: #3b4c54;
  padding: 4px 10px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid #e0dad1;
}

.Profile-module__profileActions___LvVmt {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.Profile-module__profileCompletion___ABsTk {
  font-size: 12px;
  color: #5a5a5a;
  background: #f2f0ed;
  padding: 4px 8px;
  border-radius: 12px;
  font-weight: 500;
}

/* Profile Content Layout */
.Profile-module__profileContent___jmxNG {
  background: white;
  border-radius: 0 0 12px 12px;
  overflow: hidden;
}

.Profile-module__profileTabs____aViK {
  display: flex;
  background: #fbfaf9;
  border-bottom: 1px solid #f2f0ed;
}

.Profile-module__tab___WyC2A {
  flex: 1;
  padding: 20px 32px;
  background: none;
  border: none;
  font-family: 'Merriweather', serif;
  font-size: 15px;
  font-weight: 500;
  color: #5a5a5a;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.Profile-module__tab___WyC2A:hover {
  color: #3b4c54;
  background: rgba(59, 76, 84, 0.05);
}

.Profile-module__tabActive___Ncqru {
  color: #3b4c54;
  background: white;
  font-weight: 600;
}

.Profile-module__tabActive___Ncqru::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #3b4c54;
}

.Profile-module__tabContent___NTkPT {
  min-height: 400px;
}

.Profile-module__profileSections___Oez2a {
  display: flex;
  flex-direction: column;
}

.Profile-module__learningLogSection___maQFj {
  padding: 0;
}

/* Profile Sections */
.Profile-module__profileSection___eZNYU {
  padding: 40px 48px;
  border-bottom: 1px solid #f2f0ed;
}

.Profile-module__profileSection___eZNYU:last-child {
  border-bottom: none;
}

.Profile-module__profileSection___eZNYU h2 {
  margin: 0 0 24px 0;
  color: #3b4c54;
  font-size: 20px;
  font-family: 'Jomolhari', serif;
  font-weight: 400;
  padding-bottom: 8px;
  border-bottom: 1px solid #f2f0ed;
}

/* Metadata */
.Profile-module__profileMetadata___yLY5v {
  padding: 20px 48px;
  background: #fbfaf9;
  color: #5a5a5a;
  font-size: 13px;
  text-align: center;
  border-top: 1px solid #f2f0ed;
}

/* Buttons */
.Profile-module__btnPrimary___hKrxM,
.Profile-module__btnSecondary___TyqYg {
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  font-family: 'Merriweather', serif;
}

.Profile-module__btnPrimary___hKrxM {
  background: #3b4c54;
  color: white;
}

.Profile-module__btnPrimary___hKrxM:hover:not(:disabled) {
  background: #2d3a42;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 76, 84, 0.2);
}

.Profile-module__btnPrimary___hKrxM:disabled {
  background: #cfc6bd;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.Profile-module__btnSecondary___TyqYg {
  background: white;
  color: #3b4c54;
  border: 1px solid #f2f0ed;
}

.Profile-module__btnSecondary___TyqYg:hover:not(:disabled) {
  background: #f2f0ed;
  transform: translateY(-1px);
}

/* Loading & Error States */
.Profile-module__profileLoading___ZWgZy,
.Profile-module__profileError___9mxlz,
.Profile-module__profileNotFound____pToK,
.Profile-module__profilePrivate___Nl5Oz,
.Profile-module__profileMembersOnly___SuCBp {
  text-align: center;
  padding: 60px 32px;
  color: #5a5a5a;
  font-family: 'Merriweather', serif;
  line-height: 1.6;
}

.Profile-module__profileLoading___ZWgZy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* Mobile Responsive Design */

@media (max-width: 768px) {
  .Profile-module__profileWrapper___VlUXp {
    padding: 0 16px;
  }

  .Profile-module__profileContainer___m8daG {
    margin: 16px 0;
  }

  .Profile-module__profileHeader____WbLT {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 24px;
  }

  .Profile-module__profileActions___LvVmt {
    align-items: center;
  }

  .Profile-module__profileName___lPfE2 {
    font-size: 24px;
  }

  .Profile-module__profileSection___eZNYU {
    padding: 24px;
  }

  .Profile-module__profileSection___eZNYU h2 {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .Profile-module__profileTabs____aViK {
    flex-direction: column;
  }

  .Profile-module__tab___WyC2A {
    padding: 12px 16px;
    border-bottom: 1px solid #f2f0ed;
    font-size: 14px;
  }

  .Profile-module__tab___WyC2A:last-child {
    border-bottom: none;
  }

  .Profile-module__tabActive___Ncqru::after {
    display: none;
  }

  .Profile-module__profileMeta___oKpiI {
    justify-content: center;
  }

  .Profile-module__profileTags___VIk8c {
    justify-content: center;
  }
  
  .Profile-module__profileMetadata___yLY5v {
    padding: 16px 24px;
  }
}

@media (max-width: 480px) {
  .Profile-module__profileWrapper___VlUXp {
    padding: 0 8px;
  }

  .Profile-module__profileHeader____WbLT {
    padding: 20px;
  }

  .Profile-module__profileSection___eZNYU {
    padding: 20px;
  }

  .Profile-module__profileAvatar___REH1p {
    width: 60px;
    height: 60px;
  }

  .Profile-module__avatarPlaceholder___NB0Kr {
    font-size: 20px;
  }

  .Profile-module__profileName___lPfE2 {
    font-size: 20px;
  }
}

/* New Profile Layout Styles */
.Profile-module__profile-container___jwHvx {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

.Profile-module__profile-header___aooPN {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid #f2f0ed;
  margin-bottom: 32px;
}

.Profile-module__profile-header-left___oL40B h1 {
  font-family: 'Jomolhari', serif;
  font-size: 32px;
  font-weight: 400;
  color: #3b4c54;
  margin: 0 0 8px 0;
}

.Profile-module__profile-location___VtesU {
  color: #5a5a5a;
  font-size: 16px;
  margin: 0 0 8px 0;
  display: flex;
  align-items: center;
}

.Profile-module__profile-location___VtesU::before {
  content: "📍";
  margin-right: 6px;
}

.Profile-module__profile-bio___Y9KfZ {
  color: #5a5a5a;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  max-width: 600px;
}

.Profile-module__profile-header-actions___cDyOZ {
  display: flex;
  gap: 12px;
}

.Profile-module__profile-content___bZVni {
  margin-bottom: 40px;
}

.Profile-module__profile-error___L5YOG {
  background: #fdf2f2;
  color: #e53e3e;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #fed7d7;
  margin: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.Profile-module__profile-error___L5YOG button {
  background: none;
  border: none;
  color: #e53e3e;
  font-size: 18px;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Modal styles for basic info */
.Profile-module__basic-info-form___VxvfD {
  max-width: 100%;
}

.Profile-module__form-section___hOSw7 {
  margin-bottom: 32px;
}

.Profile-module__form-section___hOSw7 h3 {
  font-family: 'Jomolhari', serif;
  font-size: 18px;
  font-weight: 400;
  color: #3b4c54;
  margin: 0 0 16px 0;
  padding-bottom: 8px;
  border-bottom: 1px solid #f2f0ed;
}

.Profile-module__form-field___rnPxa {
  margin-bottom: 20px;
}

.Profile-module__form-field___rnPxa label {
  display: block;
  font-weight: 500;
  color: #3b4c54;
  margin-bottom: 6px;
  font-size: 14px;
}

.Profile-module__form-field___rnPxa input,
.Profile-module__form-field___rnPxa textarea,
.Profile-module__form-field___rnPxa select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e0dad1;
  border-radius: 6px;
  font-family: 'Merriweather', serif;
  font-size: 14px;
  background: white;
  transition: border-color 0.2s ease;
}

.Profile-module__form-field___rnPxa input:focus,
.Profile-module__form-field___rnPxa textarea:focus,
.Profile-module__form-field___rnPxa select:focus {
  outline: none;
  border-color: #3b4c54;
  box-shadow: 0 0 0 2px rgba(59, 76, 84, 0.1);
}

.Profile-module__array-input___XlSjO {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.Profile-module__input-with-button___bsd0f {
  display: flex;
  gap: 8px;
}

.Profile-module__input-with-button___bsd0f input {
  flex: 1;
}

.Profile-module__input-with-button___bsd0f button {
  padding: 10px 16px;
  background: #3b4c54;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.Profile-module__input-with-button___bsd0f button:hover {
  background: #2d3a42;
}

.Profile-module__tags___stZv0 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.Profile-module__tag___OgnZj {
  background: #f2f0ed;
  color: #3b4c54;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.Profile-module__tag-remove___IvSb1 {
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  padding: 0;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.Profile-module__tag-remove___IvSb1:hover {
  background: rgba(0, 0, 0, 0.1);
}

.Profile-module__checkbox-group___j5bXN {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.Profile-module__checkbox-label___uNad5 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  cursor: pointer;
}

.Profile-module__checkbox-label___uNad5 input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.Profile-module__modal-actions___Mg8G_ {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid #f2f0ed;
}

.Profile-module__btn-secondary___mcZBn,
.Profile-module__btn-primary___qCNh0 {
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  font-family: 'Merriweather', serif;
}

.Profile-module__btn-secondary___mcZBn {
  background: white;
  color: #5a5a5a;
  border: 1px solid #e0dad1;
}

.Profile-module__btn-secondary___mcZBn:hover:not(:disabled) {
  background: #f2f0ed;
}

.Profile-module__btn-primary___qCNh0 {
  background: #3b4c54;
  color: white;
}

.Profile-module__btn-primary___qCNh0:hover:not(:disabled) {
  background: #2d3a42;
}

.Profile-module__btn-primary___qCNh0:disabled,
.Profile-module__btn-secondary___mcZBn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .Profile-module__profile-header___aooPN {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  
  .Profile-module__profile-header-left___oL40B h1 {
    font-size: 24px;
  }
  
  .Profile-module__profile-header-actions___cDyOZ {
    align-self: stretch;
  }
  
  .Profile-module__modal-actions___Mg8G_ {
    flex-direction: column;
  }
  
  .Profile-module__checkbox-group___j5bXN {
    flex-direction: column;
    gap: 12px;
  }
}


/*!************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./shared/components/profile/InlineEditField.module.css ***!
  \************************************************************************************************************************************/
/* InlineEditField CSS Module */
.InlineEditField-module__inlineEditField___xciJg {
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 15px;
  transition: all 0.2s ease;
}

.InlineEditField-module__inlineEditField___xciJg:hover {
  background-color: #fafafa;
  border-color: #e0e0e0;
}

.InlineEditField-module__fieldHeader___Mqx52 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  min-height: 32px; /* Consistent height to prevent layout shift when edit button appears */
}

.InlineEditField-module__fieldLabel___TOv66 {
  font-size: 14px;
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.InlineEditField-module__editIconBtn___HOFpX {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  opacity: 0.6;
  transition: all 0.2s ease;
  font-size: 14px;
}

/* Edit button transitions */

.InlineEditField-module__editIconBtn___HOFpX:hover {
  opacity: 1;
  background-color: #f0f0f0;
}


.InlineEditField-module__cancelBtn___EHIoF {
  background: #6c757d;
  color: white;
  border: none;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.InlineEditField-module__cancelBtn___EHIoF:hover {
  background: #545b62;
}

.InlineEditField-module__cancelBtn___EHIoF:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.InlineEditField-module__fieldDisplay___nP6hF {
  min-height: 24px;
  display: flex;
  align-items: center;
}

.InlineEditField-module__emptyField___J2gmc {
  color: #9ca3af;
  font-style: italic;
}

.InlineEditField-module__multilineContent___Oon15 {
  white-space: pre-wrap;
  line-height: 1.5;
}

.InlineEditField-module__fieldEdit___l89ZA {
  margin-top: 8px;
}

.InlineEditField-module__fieldExplainer___n8MCi {
  margin: 0 0 8px 0;
  font-size: 12px;
  color: #666;
  font-style: italic;
}

.InlineEditField-module__inlineEditInput___v2SWd,
.InlineEditField-module__inlineEditTextarea___iM4kP,
.InlineEditField-module__inlineEditSelect___Jrx2Q {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  transition: border-color 0.2s ease;
}

.InlineEditField-module__inlineEditInput___v2SWd:focus,
.InlineEditField-module__inlineEditTextarea___iM4kP:focus,
.InlineEditField-module__inlineEditSelect___Jrx2Q:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.InlineEditField-module__inlineEditTextarea___iM4kP {
  resize: vertical;
  min-height: 80px;
  font-family: inherit;
}

.InlineEditField-module__editActions___bGAQK {
  margin-top: 8px;
  display: flex;
  gap: 8px;
}

.InlineEditField-module__saveBtn___K7IcE {
  background: #3498db;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.InlineEditField-module__saveBtn___K7IcE:hover:not(:disabled) {
  background: #2980b9;
}

.InlineEditField-module__saveBtn___K7IcE:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Tags styling */
.InlineEditField-module__tags___xOV0J {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.InlineEditField-module__tag___Qs4X9 {
  background: #e3f2fd;
  color: #1976d2;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.InlineEditField-module__tagRemove___LUmQt {
  background: none;
  border: none;
  color: #1976d2;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  padding: 0;
  margin-left: 2px;
}

.InlineEditField-module__tagRemove___LUmQt:hover {
  color: #d32f2f;
}

/* Array input styling */
.InlineEditField-module__arrayInput___lLMBB {
  margin-top: 8px;
}

.InlineEditField-module__arrayAdd___qWk7T {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.InlineEditField-module__arrayAdd___qWk7T .InlineEditField-module__inlineEditInput___v2SWd {
  flex: 1;
}

.InlineEditField-module__addBtn___octO5 {
  background: #4caf50;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

.InlineEditField-module__addBtn___octO5:hover {
  background: #45a049;
}

.InlineEditField-module__optionButtons___LAVfY {
  margin-bottom: 12px;
}

.InlineEditField-module__optionBtn___PdiJd {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  color: #495057;
  padding: 6px 12px;
  margin: 2px 4px 2px 0;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.InlineEditField-module__optionBtn___PdiJd:hover {
  background: #e9ecef;
  border-color: #adb5bd;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .InlineEditField-module__inlineEditField___xciJg {
    padding: 12px;
  }
  
  .InlineEditField-module__fieldHeader___Mqx52 {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .InlineEditField-module__editActions___bGAQK {
    flex-direction: column;
  }
  
  .InlineEditField-module__arrayAdd___qWk7T {
    flex-direction: column;
  }
  
  .InlineEditField-module__optionBtn___PdiJd {
    display: block;
    margin: 4px 0;
    width: 100%;
  }
}
/*!***********************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./shared/components/learning/LearningGoals.module.css ***!
  \***********************************************************************************************************************************/
.LearningGoals-module__learningGoals___eIa4Y {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.LearningGoals-module__header___hKUGv {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  border-bottom: 2px solid #e9ecef;
  padding-bottom: 16px;
}

.LearningGoals-module__header___hKUGv h2 {
  margin: 0;
  color: #2c3e50;
  font-size: 28px;
  font-weight: 600;
}

.LearningGoals-module__createBtn___ng4KT {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
}

.LearningGoals-module__createBtn___ng4KT:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.LearningGoals-module__createForm___ffOp_ {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 32px;
}

.LearningGoals-module__formGroup___X9KC_ {
  margin-bottom: 16px;
}

.LearningGoals-module__formGroup___X9KC_ label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #2c3e50;
  font-size: 14px;
}

.LearningGoals-module__formGroup___X9KC_ input,
.LearningGoals-module__formGroup___X9KC_ textarea,
.LearningGoals-module__formGroup___X9KC_ select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-size: 14px;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.LearningGoals-module__formGroup___X9KC_ input:focus,
.LearningGoals-module__formGroup___X9KC_ textarea:focus,
.LearningGoals-module__formGroup___X9KC_ select:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.1);
}

.LearningGoals-module__formRow___sMyDa {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.LearningGoals-module__formActions___EnoK5 {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.LearningGoals-module__saveBtn___ysJZP {
  background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.LearningGoals-module__saveBtn___ysJZP:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.LearningGoals-module__cancelBtn___EYqHw {
  background: #6c757d;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-right: 12px;
}

.LearningGoals-module__cancelBtn___EYqHw:hover {
  background: #5a6268;
  transform: translateY(-1px);
}

.LearningGoals-module__editBtn___AomN_ {
  background: none;
  border: none;
  color: #6c757d;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  transition: all 0.2s ease;
}

.LearningGoals-module__editBtn___AomN_:hover {
  background: #f8f9fa;
  color: #495057;
}

.LearningGoals-module__inlineEditForm___ZRt4m {
  width: 100%;
}

.LearningGoals-module__titleInput___nBmlS {
  background: none;
  border: 1px dashed #ced4da;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  flex: 1;
  margin-right: 12px;
}

.LearningGoals-module__titleInput___nBmlS:focus {
  outline: none;
  border-color: #3498db;
  background: #fff;
}

.LearningGoals-module__descriptionTextarea___kyyoS {
  width: 100%;
  padding: 8px 12px;
  border: 1px dashed #ced4da;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  line-height: 1.5;
  margin: 12px 0;
  resize: vertical;
  background: #fafafa;
  color: #6c757d;
}

.LearningGoals-module__descriptionTextarea___kyyoS:focus {
  outline: none;
  border-color: #3498db;
  background: #fff;
}

.LearningGoals-module__editControls___VScqO {
  display: flex;
  gap: 12px;
  margin: 12px 0;
}

.LearningGoals-module__editControls___VScqO .LearningGoals-module__subjectInput___JUgbk {
  padding: 6px 10px;
  border: 1px dashed #ced4da;
  border-radius: 4px;
  font-size: 12px;
  background: #f0f0f0;
  color: #495057;
}

.LearningGoals-module__editControls___VScqO .LearningGoals-module__subjectInput___JUgbk:focus {
  outline: none;
  border-color: #3498db;
  background: #fff;
}

.LearningGoals-module__visibilitySelect___XL4YP {
  padding: 6px 10px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-size: 12px;
  background: #fff;
}

.LearningGoals-module__editActions____uZmS {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 12px;
}

.LearningGoals-module__editActions____uZmS .LearningGoals-module__cancelBtn___EYqHw, .LearningGoals-module__editActions____uZmS .LearningGoals-module__saveBtn___ysJZP {
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.LearningGoals-module__goalsList___b7epp {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.LearningGoals-module__goalCard___NqpIx {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 20px;
  transition: all 0.2s ease;
}

.LearningGoals-module__goalCard___NqpIx:hover {
  border-color: #3498db;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.LearningGoals-module__goalHeader___FQhc_ {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.LearningGoals-module__goalHeaderActions___r4WPD {
  display: flex;
  align-items: center;
  gap: 8px;
}

.LearningGoals-module__goalTitle___z6mrI {
  margin: 0;
  color: #2c3e50;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  flex: 1;
  margin-right: 12px;
}

.LearningGoals-module__statusBadge___b3tIF {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.LearningGoals-module__statusBadge___b3tIF.LearningGoals-module__active___lFU7a {
  background: #e3f2fd;
  color: #1976d2;
}

.LearningGoals-module__statusBadge___b3tIF.LearningGoals-module__completed___V9mts {
  background: #e8f5e8;
  color: #2e7d32;
}

.LearningGoals-module__statusBadge___b3tIF.LearningGoals-module__paused___dTJcm {
  background: #fff3e0;
  color: #f57c00;
}

.LearningGoals-module__statusBadge___b3tIF.LearningGoals-module__abandoned___BBIPM {
  background: #ffebee;
  color: #c62828;
}

.LearningGoals-module__goalDescription___QeRxN {
  color: #6c757d;
  margin: 0 0 16px 0;
  line-height: 1.5;
}

.LearningGoals-module__goalMeta___efFHg {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.LearningGoals-module__subjectTag___m6qbx {
  background: #f0f0f0;
  color: #495057;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}

.LearningGoals-module__targetDate___BjMN1 {
  color: #6c757d;
  font-size: 12px;
}

.LearningGoals-module__progressBinary___c4Oyr {
  display: flex;
  align-items: center;
  gap: 12px;
}

.LearningGoals-module__completeBtn___iqM1i {
  background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.LearningGoals-module__completeBtn___iqM1i:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(39, 174, 96, 0.3);
}

.LearningGoals-module__completedBadge___dhDk2 {
  color: #27ae60;
  font-weight: 600;
  font-size: 14px;
}

.LearningGoals-module__progressPercentage___I449C {
  display: flex;
  align-items: center;
  gap: 12px;
}

.LearningGoals-module__progressBar___jw3Oq {
  flex: 1;
  height: 8px;
  background: #e9ecef;
  border-radius: 4px;
  overflow: hidden;
}

.LearningGoals-module__progressFill____SVJY {
  height: 100%;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  transition: width 0.3s ease;
}

.LearningGoals-module__progressText___GVDjb {
  font-weight: 600;
  color: #2c3e50;
  min-width: 40px;
  text-align: right;
  font-size: 14px;
}

.LearningGoals-module__progressSlider___muDSR {
  width: 120px;
}

.LearningGoals-module__completionDate___lfXsT {
  color: #27ae60;
  font-size: 12px;
  font-weight: 500;
  margin-top: 8px;
}

.LearningGoals-module__emptyState___Uhd37 {
  text-align: center;
  color: #6c757d;
  padding: 40px 20px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 2px dashed #dee2e6;
  line-height: 1.5;
}

.LearningGoals-module__loading___xYyvt {
  text-align: center;
  color: #6c757d;
  padding: 40px;
}

@media (max-width: 768px) {
  .LearningGoals-module__learningGoals___eIa4Y {
    padding: 16px;
  }
  
  .LearningGoals-module__header___hKUGv {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .LearningGoals-module__formRow___sMyDa {
    grid-template-columns: 1fr;
  }
  
  .LearningGoals-module__goalHeader___FQhc_ {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .LearningGoals-module__goalMeta___efFHg {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .LearningGoals-module__progressPercentage___I449C {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .LearningGoals-module__progressSlider___muDSR {
    width: 100%;
  }
}
/*!**************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./shared/components/learning/LearningLogPosts.module.css ***!
  \**************************************************************************************************************************************/
.LearningLogPosts-module__learningLogPosts___Le3Jo {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.LearningLogPosts-module__header___Po0Hr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  border-bottom: 2px solid #e9ecef;
  padding-bottom: 16px;
}

.LearningLogPosts-module__header___Po0Hr h2 {
  margin: 0;
  color: #2c3e50;
  font-size: 28px;
  font-weight: 600;
}

.LearningLogPosts-module__createBtn___aE9mi {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
}

.LearningLogPosts-module__createBtn___aE9mi:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.LearningLogPosts-module__createForm___m3oOI {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 32px;
}

.LearningLogPosts-module__formGroup___A6Smt {
  margin-bottom: 16px;
}

.LearningLogPosts-module__formGroup___A6Smt label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #2c3e50;
  font-size: 14px;
}

.LearningLogPosts-module__formGroup___A6Smt input,
.LearningLogPosts-module__formGroup___A6Smt textarea,
.LearningLogPosts-module__formGroup___A6Smt select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-size: 14px;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
  font-family: inherit;
}

.LearningLogPosts-module__formGroup___A6Smt textarea {
  resize: vertical;
  min-height: 80px;
}

.LearningLogPosts-module__formGroup___A6Smt input:focus,
.LearningLogPosts-module__formGroup___A6Smt textarea:focus,
.LearningLogPosts-module__formGroup___A6Smt select:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.1);
}

.LearningLogPosts-module__formRow___MAzSc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.LearningLogPosts-module__formActions___a5W0r {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.LearningLogPosts-module__saveBtn___A7ykM {
  background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.LearningLogPosts-module__saveBtn___A7ykM:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.LearningLogPosts-module__cancelBtn___U9aSL {
  background: #6c757d;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-right: 12px;
}

.LearningLogPosts-module__cancelBtn___U9aSL:hover {
  background: #5a6268;
  transform: translateY(-1px);
}

.LearningLogPosts-module__postsList___J2ys9 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.LearningLogPosts-module__postCard___g3i_X {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 20px;
  transition: all 0.2s ease;
}

.LearningLogPosts-module__postCard___g3i_X:hover {
  border-color: #3498db;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.LearningLogPosts-module__postHeader___UQtho {
  margin-bottom: 16px;
}

.LearningLogPosts-module__postMeta___sgjsF {
  display: flex;
  align-items: center;
  gap: 12px;
}

.LearningLogPosts-module__postDate___oLZuV {
  color: #6c757d;
  font-size: 12px;
  font-weight: 500;
}

.LearningLogPosts-module__subjectTag___nZVOp {
  background: #e3f2fd;
  color: #1976d2;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.LearningLogPosts-module__postContent___RoEwH {
  color: #2c3e50;
  line-height: 1.6;
  margin-bottom: 16px;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.LearningLogPosts-module__relatedGoal___qxgZS {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  padding: 12px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.LearningLogPosts-module__goalLabel___dcZpe {
  font-size: 12px;
  color: #6c757d;
  font-weight: 500;
}

.LearningLogPosts-module__goalTitle___ihlA1 {
  font-size: 12px;
  color: #2c3e50;
  font-weight: 600;
}

.LearningLogPosts-module__postActions___edH3j {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid #f1f3f4;
}

.LearningLogPosts-module__likeBtn___zeMBa {
  background: none;
  border: none;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #6c757d;
  display: flex;
  align-items: center;
  gap: 4px;
}

.LearningLogPosts-module__likeBtn___zeMBa:hover {
  background: #f8f9fa;
  color: #e74c3c;
}

.LearningLogPosts-module__likeBtn___zeMBa.LearningLogPosts-module__liked___rPiy5 {
  color: #e74c3c;
  background: #ffebee;
}

.LearningLogPosts-module__likeBtn___zeMBa:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.LearningLogPosts-module__engagement___fit8Z {
  color: #6c757d;
  font-size: 12px;
  font-weight: 500;
}

.LearningLogPosts-module__editBtn___ku6Jt {
  background: none;
  border: none;
  color: #6c757d;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 12px;
  transition: all 0.2s ease;
  margin-left: auto;
}

.LearningLogPosts-module__editBtn___ku6Jt:hover {
  background: #f8f9fa;
  color: #495057;
}

.LearningLogPosts-module__inlineEditForm___INmrI {
  width: 100%;
}

.LearningLogPosts-module__subjectInput___NQMYZ {
  background: none;
  border: 1px dashed #ced4da;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  color: #1976d2;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-left: 12px;
}

.LearningLogPosts-module__subjectInput___NQMYZ:focus {
  outline: none;
  border-color: #3498db;
  background: #fff;
}

.LearningLogPosts-module__contentTextarea___HfauQ {
  width: 100%;
  padding: 12px;
  border: 1px dashed #ced4da;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  line-height: 1.6;
  margin: 12px 0;
  resize: vertical;
  background: #fafafa;
}

.LearningLogPosts-module__contentTextarea___HfauQ:focus {
  outline: none;
  border-color: #3498db;
  background: #fff;
}

.LearningLogPosts-module__editControls___dLNa3 {
  display: flex;
  gap: 12px;
  margin: 12px 0;
}

.LearningLogPosts-module__goalSelect___w6eZb, .LearningLogPosts-module__visibilitySelect___TytRV {
  padding: 6px 10px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-size: 12px;
  background: #fff;
}

.LearningLogPosts-module__editActions___NqQdl {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 12px;
}

.LearningLogPosts-module__editActions___NqQdl .LearningLogPosts-module__cancelBtn___U9aSL, .LearningLogPosts-module__editActions___NqQdl .LearningLogPosts-module__saveBtn___A7ykM {
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.LearningLogPosts-module__emptyState___SfVf2 {
  text-align: center;
  color: #6c757d;
  padding: 40px 20px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 2px dashed #dee2e6;
  line-height: 1.5;
}

.LearningLogPosts-module__loading___XKGdY {
  text-align: center;
  color: #6c757d;
  padding: 40px;
}

@media (max-width: 768px) {
  .LearningLogPosts-module__learningLogPosts___Le3Jo {
    padding: 16px;
  }
  
  .LearningLogPosts-module__header___Po0Hr {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .LearningLogPosts-module__formRow___MAzSc {
    grid-template-columns: 1fr;
  }
  
  .LearningLogPosts-module__postMeta___sgjsF {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .LearningLogPosts-module__relatedGoal___qxgZS {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  
  .LearningLogPosts-module__postActions___edH3j {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
/*!*********************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./shared/components/learning/LearningLog.module.css ***!
  \*********************************************************************************************************************************/
.LearningLog-module__learningLog___PzRPR {
  max-width: 800px;
  margin: 0 auto;
}

.LearningLog-module__tabNavigation___sq_yo {
  display: flex;
  border-bottom: 2px solid #e9ecef;
  margin-bottom: 0;
}

.LearningLog-module__tabBtn___BQExY {
  background: none;
  border: none;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #6c757d;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 3px solid transparent;
  position: relative;
}

.LearningLog-module__tabBtn___BQExY:hover {
  color: #3498db;
}

.LearningLog-module__tabBtn___BQExY.LearningLog-module__active___fPb9h {
  color: #3498db;
  border-bottom-color: #3498db;
}

.LearningLog-module__tabContent___bs_Za {
  margin-top: 0;
}

/* Override the header styling in child components when used in tabs */
.LearningLog-module__tabContent___bs_Za .learningGoals .LearningLog-module__header___LXA2U,
.LearningLog-module__tabContent___bs_Za .learningLogPosts .LearningLog-module__header___LXA2U {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .LearningLog-module__tabNavigation___sq_yo {
    overflow-x: auto;
    white-space: nowrap;
  }
  
  .LearningLog-module__tabBtn___BQExY {
    padding: 12px 20px;
    font-size: 14px;
    flex-shrink: 0;
  }
}
/*!*************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./shared/components/profile/ProfileQuestions.module.css ***!
  \*************************************************************************************************************************************/
/* Profile Questions Styles */
.ProfileQuestions-module__profileQuestions___c1AdA {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.ProfileQuestions-module__questionItem___h6tmW {
  display: flex;
  align-items: flex-start;
  margin-bottom: 32px;
  padding: 24px;
  background: var(--color-background-light, #fafafa);
  border-radius: 12px;
  border: 1px solid var(--color-border-light, #e5e5e5);
  transition: all 0.2s ease;
}

.ProfileQuestions-module__questionItem___h6tmW:hover {
  border-color: var(--color-primary-light, #d4e3d7);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.ProfileQuestions-module__questionNumber___G23KJ {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--color-primary, #3b4c54);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  margin-right: 20px;
  margin-top: 4px;
}

.ProfileQuestions-module__questionContent___WE1rb {
  flex: 1;
  min-width: 0;
}

.ProfileQuestions-module__questionText___dxFZr {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-primary, #2c2c2c);
  margin: 0 0 12px 0;
  line-height: 1.4;
}

.ProfileQuestions-module__questionAnswer___zndo1 {
  color: var(--color-text-secondary, #666);
  line-height: 1.6;
  margin: 0;
}

.ProfileQuestions-module__questionAnswer___zndo1 p {
  margin: 0;
  font-size: 16px;
}

.ProfileQuestions-module__noAnswer___ipCn0 {
  color: var(--color-text-muted, #999) !important;
  font-style: italic;
  font-size: 14px !important;
}

/* Inline edit field styling within questions */
.ProfileQuestions-module__questionItem___h6tmW .ProfileQuestions-module__inline-edit-field___gcjk1 {
  border: none;
  background: transparent;
  padding: 0;
}

.ProfileQuestions-module__questionItem___h6tmW .ProfileQuestions-module__inline-edit-field___gcjk1:hover,
.ProfileQuestions-module__questionItem___h6tmW .ProfileQuestions-module__inline-edit-field___gcjk1:focus {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--color-primary-light, #d4e3d7);
  border-radius: 6px;
  padding: 8px;
}

.ProfileQuestions-module__questionItem___h6tmW .ProfileQuestions-module__inline-edit-field___gcjk1 textarea {
  min-height: 60px;
  font-size: 16px;
  line-height: 1.6;
}

.ProfileQuestions-module__questionItem___h6tmW .ProfileQuestions-module__inline-edit-placeholder___ue6zp {
  color: var(--color-text-muted, #999);
  font-style: italic;
  font-size: 14px;
  padding: 8px;
  border: 1px dashed var(--color-border-light, #ddd);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ProfileQuestions-module__questionItem___h6tmW .ProfileQuestions-module__inline-edit-placeholder___ue6zp:hover {
  background: rgba(255, 255, 255, 0.8);
  border-color: var(--color-primary, #3b4c54);
}

/* Responsive design */
@media (max-width: 768px) {
  .ProfileQuestions-module__profileQuestions___c1AdA {
    padding: 16px;
  }
  
  .ProfileQuestions-module__questionItem___h6tmW {
    flex-direction: column;
    padding: 20px;
    margin-bottom: 24px;
  }
  
  .ProfileQuestions-module__questionNumber___G23KJ {
    margin-right: 0;
    margin-bottom: 12px;
    margin-top: 0;
    align-self: flex-start;
  }
  
  .ProfileQuestions-module__questionText___dxFZr {
    font-size: 16px;
  }
}
