 body {
      font-family: 'Segoe UI', sans-serif;
      background: #f7f8fc;
      margin: 0;
     
    }
     
    .container {
      max-width: 850px;
      margin: 30px auto;
      background: #fff;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
    }
    .placeholder{
        background-color:#fff !important;
    }
    .main-tabs {
      display: flex;
      border-bottom: 2px solid #ccc;
      margin-bottom: 20px;
    }
    .main-tab {
      flex: 1;
      text-align: center;
      padding: 12px;
      cursor: pointer;
      background: #f5f5f5;
      border-right: 1px solid #ddd;
      font-weight: 500;
    }
    .main-tab.active {
      border-bottom: 3px solid #2c3e50;
      background: #fff;
    }
    .tabs {
      display: flex;
      margin-bottom: 20px;
      border: 1px solid #ddd;
      border-radius: 6px;
      overflow: hidden;
    }
    .tab {
      flex: 1;
      padding: 12px;
      text-align: center;
      cursor: pointer;
      font-weight: 500;
      background: #f9f9f9;
    }
    .tab.active {
      background: #dc3545;
      color: white;
    }
    .form-group {
      display: flex;
      flex-direction: column;
      margin-bottom: 18px;
    }
    .form-group-inline {
      display: flex;
      align-items: center;
    }
    .form-group label {
      width: 200px;
      font-size: 14px;
      color: #8e8e8e;
    }
    .form-group select, .form-group input[type="text"] {
      width: 100%;
      padding: 10px 35px 10px 12px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 14px;
      background-color: #fff;
      background-image: url('data:image/svg+xml;utf8,<svg fill="%23666" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
      background-repeat: no-repeat;
      background-position: right 10px center;
      background-size: 16px 16px;
      appearance: none;
      color: #333;
      box-sizing: border-box;
    }
    input[type="text"] {
      background-image: none;
    }
    .inline-selects {
      display: flex;
      gap: 10px;
      width: 100%;
    }
    .inline-selects select {
      flex: 1;
    }
    .remove-link {
      font-size: 12px;
      color: #dc3545;
      cursor: pointer;
      text-align: right;
      margin-bottom: 5px;
    }
    .photo-options {
      display: flex;
      justify-content: center;
      margin-top: 20px;
    }
    .photo-btn {
      flex: 1;
      margin: 0 5px;
      padding: 10px;
      border: 1px solid #dc3545;
      border-radius: 30px;
      background: #fff;
      color: #dc3545;
      cursor: pointer;
      text-align: center;
      font-weight: 500;
    }
    .photo-btn.active {
      background: #dc3545;
      color: white;
    }
    .submit-btn {
      width: 40%;
  padding: 12px;
  background-color: #dc3545;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
  display: block;
  margin: 0 auto; /* Center alignment */
    }
    
    .submit-btn:hover {
  background-color: #c82333;
}
    .section { display: none; }
    .section.active { display: block; }
    
    /* AGE SELECT BOX ONLY */
.age-dropdown-wrapper {
  position: relative;
  width: 100%;
}

.age-selected {
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  cursor: pointer;
  background-color: #fff;
  font-size: 14px;
  color: #333;
}

.age-options {
  display: none;
  position: absolute;
  top: 105%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #dc3545;
  z-index: 999;
  padding: 10px;
  max-height: 200px;
  overflow-y: auto;
  border-radius: 4px;
}

.age-options.active {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.age-options div {
  padding: 8px;
  background: #f7f7f7;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
  font-size: 13px;
}

.age-options div:hover,
.age-options div.selected {
  background: #dc3545;
  color: #fff;
}
.form-group-inline.gender-align {
  display: flex;
  align-items: center;
}

.gender-align label {
  width: 160px !important;
  font-size: 14px;
  color: #8e8e8e;
}

.gender-align .gender-toggle {
  flex: 1;
  height: 44px;
  max-width: none;
  width: 100%;
}

.gender-toggle {
  display: flex;
  border: 1px solid #ccc;
  border-radius: 6px;
  overflow: hidden;
}

.gender-btn {
  flex: 1;
  text-align: center;
  line-height: 44px;
  font-size: 14px;
  background: #fff;
  cursor: pointer;
  color: #333;
  border: none;
  transition: background 0.3s;
}

.gender-btn.active {
  background: #dc3545;
  color: #fff;
}

.height-dropdown-wrapper {
    position: relative;
    width: 100%;
  }

  .height-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #dc3545;
    z-index: 999;
    padding: 10px;
    max-height: 200px;
    overflow-y: auto;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  .height-options.active {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .height-options div {
    padding: 10px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .height-options div:hover {
    background: #f8f8f8;
  }

  .height-options div.selected {
    background: #dc3545;
    color: #fff;
    border-color: #dc3545;
  }

  .inline-selects {
    display: flex;
    gap: 10px;
    width: 100%;
    position: relative;
  }
  
  
.religion-dropdown-wrapper {
    position: relative;
    width: 100%;
  }

  .religion-selected {
    min-height: 45px;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px; /* increased gap for spacing */
    cursor: pointer;
    background: #fff;
  }

  .selected-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .selected-tags .tag {
    background: #dc3545;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    font-size: 13px;
  }

  .selected-tags .tag .remove {
    margin-left: 6px;
    cursor: pointer;
  }

  .religion-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #dc3545;
    z-index: 999;
    padding: 10px;
    max-height: 200px;
    overflow-y: auto;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  .religion-options.active {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .religion-options div {
    padding: 10px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .religion-options div:hover,
  .religion-options div.selected {
    background: #dc3545;
    color: #fff;
    border-color: #dc3545;
  }
  
  
  .mother-dropdown-wrapper {
    position: relative;
    width: 100%;
  }

  .mother-selected {
   
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    cursor: pointer;
    background: #fff;
  }

  .mother-tags .tag {
    background: #dc3545;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    font-size: 13px;
  }

  .mother-tags .tag .remove {
    margin-left: 6px;
    cursor: pointer;
  }

  .mother-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #dc3545;
    z-index: 999;
    padding: 10px;
    max-height: 200px;
    overflow-y: auto;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  .mother-options.active {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .mother-options div {
    padding: 10px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .mother-options div:hover,
  .mother-options div.selected {
    background: #dc3545;
    color: #fff;
    border-color: #dc3545;
  }
  
  .mother-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

  
  
.country-dropdown-wrapper {
    position: relative;
    width: 100%;
  }

  .country-selected {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    cursor: pointer;
    background: #fff;
   
  }

  .country-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .country-tags .tag {
    background: #dc3545;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    font-size: 13px;
  }

  .country-tags .tag .remove {
    margin-left: 6px;
    cursor: pointer;
  }

  .country-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #dc3545;
    z-index: 999;
    padding: 10px;
    max-height: 220px;
    overflow-y: auto;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  .country-options.active {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .country-options div {
    padding: 10px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .country-options div:hover,
  .country-options div.selected {
    background: #dc3545;
    color: #fff;
    border-color: #dc3545;
  }  


 .residential-dropdown-wrapper {
    position: relative;
    width: 100%;
  }

  .residential-selected {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    cursor: pointer;
    background: #fff;
  }

  .residential-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .residential-tags .tag {
    background: #dc3545;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    font-size: 13px;
  }

  .residential-tags .tag .remove {
    margin-left: 6px;
    cursor: pointer;
  }

  .residential-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #dc3545;
    z-index: 999;
    padding: 10px;
    max-height: 200px;
    overflow-y: auto;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  .residential-options.active {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .residential-options div {
    padding: 10px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .residential-options div:hover,
  .residential-options div.selected {
    background: #dc3545;
    color: #fff;
    border-color: #dc3545;
  } 
  
   .income-dropdown-wrapper {
    position: relative;
    width: 100%;
  }

  .income-selected {
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    cursor: pointer;
    background-color: #fff;
    font-size: 14px;
    color: #333;
    position: relative;
  }

  .income-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #dc3545;
    z-index: 999;
    padding: 10px 0;
    max-height: 200px;
    overflow-y: auto;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  .income-options.active {
    display: block;
  }

  .income-options div {
    padding: 10px 15px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
  }

  .income-options div:hover,
  .income-options div.selected {
    background: #dc3545;
    color: #fff;
  }
  
  
 .marital-dropdown-wrapper {
    position: relative;
    width: 100%;
  }

  .marital-selected {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    cursor: pointer;
    background: #fff;
  }

  .marital-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .marital-tags .tag {
    background: #dc3545;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    font-size: 13px;
  }

  .marital-tags .tag .remove {
    margin-left: 6px;
    cursor: pointer;
  }
 .tag{
     background: #dc3545;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    font-size: 13px;
 }
  .marital-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #dc3545;
    z-index: 999;
    padding: 10px;
    max-height: 200px;
    overflow-y: auto;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  .marital-options.active {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .marital-options div {
    padding: 10px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .marital-options div:hover,
  .marital-options div.selected {
    background: #dc3545;
    color: #fff;
    border-color: #dc3545;
  }  
 
 
  .children-dropdown-wrapper {
    position: relative;
    width: 100%;
  }

  .children-selected {
    min-height: 45px;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    cursor: pointer;
    background: #fff;
  }

  .children-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #dc3545;
    z-index: 999;
    padding: 10px;
    max-height: 200px;
    overflow-y: auto;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  .children-options.active {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .children-options div {
    padding: 10px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .children-options div:hover,
  .children-options div.selected {
    background: #dc3545;
    color: #fff;
    border-color: #dc3545;
  }
  
  
  
.accordion-section {
  margin-top: 20px;
  border-top: 1px solid #ddd;
}

.accordion-header {
  text-align: center;
  font-size: 16px;
  padding: 12px 0;
  font-weight: 500;
  color: #555;
  cursor: pointer;
  position: relative;
}

.accordion-icon {
  margin-left: 5px;
  font-weight: bold;
}

.accordion-content {
  display: none;
  padding: 20px 40px;
}

.accordion-content.active {
  display: block;
}

.form-group-inline {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.form-group-inline label {
  width: 200px;
  font-size: 14px;
  color: #888;
}

.select-wrapper {
  position: relative;
  flex: 1;
  border: 1px solid #ccc;
  border-radius: 6px;
  cursor: pointer;
  padding: 10px;
  background: #fff;
}

.selected-option {
  font-size: 14px;
  color: #333;
}

.dropdown-options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  background: #fff;
  border: 1px solid #dc3545;
  border-top: none;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.dropdown-options div {
  padding: 10px;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  color: #333;
}

.dropdown-options div:hover {
  background: #f8f8f8;
}

.horoscope-toggle {
  display: flex;
  width: 300px;
  border: 1px solid #ccc;
  border-radius: 4px;
  overflow: hidden;
}

.toggle-btn {
  flex: 1;
  text-align: center;
  padding: 12px 10px;
  cursor: pointer;
  font-size: 14px;
  background: #fff;
  color: #333;
}

.toggle-btn.active {
  background: #dc3545;
  color: #fff;
}
  
  .astro-section {
    margin-top: 30px;
  }

  .astro-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    margin: 20px 0;
    cursor: pointer;
  }

  .astro-toggle .accordion-header {
    font-size: 16px;
    color: #333;
    text-align: center;
    user-select: none;
  }

  .astro-toggle .accordion-header span {
    font-weight: 600;
    margin-right: 6px;
  }

  .astro-toggle .toggle-icon {
    font-weight: bold;
    transition: transform 0.3s;
  }

  .astro-content {
    display: none;
    margin-top: 20px;
  }

  .astro-content.active {
    display: block;
  }

  .astro-form-group {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
  }

  .astro-form-group label {
    width: 180px;
    color: #888;
    font-size: 14px;
  }

  .astro-form-group .dropdown-wrapper {
    position: relative;
    width: 100%;
  }

  .astro-form-group .dropdown-selected {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 10px;
    background: #fff;
    cursor: pointer;
    font-size: 14px;
    color: #333;
  }

  .astro-form-group .dropdown-options {
    display: none;
    position: absolute;
    top: 105%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #dc3545;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 999;
    grid-template-columns: repeat(3, 1fr);
    padding: 10px 0;
  }

  .astro-form-group .dropdown-options.active {
    display: grid;
  }

  .astro-form-group .dropdown-options div {
    padding: 10px;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .astro-form-group .dropdown-options div:hover,
  .astro-form-group .dropdown-options div.selected {
    background: #dc3545;
    color: #fff;
  }

  .astro-toggle-btns {
    display: flex;
    width: 100%;
  }

  .astro-toggle-btn {
    flex: 1;
    padding: 12px;
    text-align: center;
    background: #fff;
    border: 1px solid #ccc;
    border-right: none;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
  }

  .astro-toggle-btn:last-child {
    border-right: 1px solid #ccc;
  }

  .astro-toggle-btn.active {
    background: #dc3545;
    color: #fff;
    border-color: #dc3545;
  }
  
  .astro-form-group .astro-dropdown-options {
  display: none;
  position: absolute;
  top: 105%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #dc3545;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 999;
  grid-template-columns: repeat(3, 1fr);
  padding: 10px;
}

.astro-form-group .astro-dropdown-options.active {
  display: grid;
  gap:8px
}

.astro-form-group .astro-dropdown-options div {
  padding: 10px;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border: 1px solid #dc3545;
    border-radius: 4px;
}

.astro-form-group .astro-dropdown-options div:hover,
.astro-form-group .astro-dropdown-options div.selected {
  background: #dc3545;
  color: #fff;
}
.edu-section {
    margin-top: 30px;
  }

  .edu-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    margin: 20px 0;
    cursor: pointer;
  }

  .edu-toggle .accordion-header {
    font-size: 16px;
    color: #333;
    text-align: center;
    user-select: none;
  }

  .edu-toggle .accordion-header span {
    font-weight: 600;
    margin-right: 6px;
  }

  .edu-toggle .toggle-icon {
    font-weight: bold;
    transition: transform 0.3s;
  }

  .edu-content {
    display: none;
    margin-top: 20px;
  }

  .edu-content.active {
    display: block;
  }

  .edu-form-group {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
  }

  .edu-form-group label {
    width: 180px;
    color: #888;
    font-size: 14px;
  }

  .edu-form-group .dropdown-wrapper {
    position: relative;
    width: 100%;
  }

  .edu-form-group .dropdown-selected {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 10px;
    background: #fff;
    cursor: pointer;
    font-size: 14px;
    color: #333;
  }

  .edu-form-group .dropdown-options {
    display: none;
    position: absolute;
    top: 105%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #dc3545;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 999;
    grid-template-columns: repeat(3, 1fr);
    padding: 10px;
  }

  .edu-form-group .dropdown-options.active {
    display: grid;
    gap:8px;
  }
  
 .form-group-children .dropdown-options.active {
    display: grid;
    gap:8px;
    grid-template-columns: repeat(3, 1fr);
  }
  .form-group-children .dropdown-options  {
      display: none;
    position: absolute;
    top: 105%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #dc3545;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 999;
    grid-template-columns: repeat(3, 1fr);
    padding: 10px;
  }
  
  .form-group-children .dropdown-options div {
    padding: 10px;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border: 1px solid #ddd;
    border-radius: 4px;
  }
  
   .form-group-children .dropdown-options div.selected {
    background: #dc3545;
    color: #fff;
}
  .edu-form-group .dropdown-options div {
    padding: 10px;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border: 1px solid #ddd;
    border-radius: 4px;
  }

  .edu-form-group .dropdown-options div:hover,
  .edu-form-group .dropdown-options div.selected {
    background: #dc3545;
    color: #fff;
  }
  
   .edu-form-group .tag {
    background: #dc3545;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    font-size: 13px;
  }
  
   .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.lifestyle-section {
    margin-top: 30px;
  }

  .lifestyle-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    margin: 20px 0;
    cursor: pointer;
  }

  .lifestyle-toggle .accordion-header {
    font-size: 16px;
    color: #333;
    text-align: center;
    user-select: none;
  }

  .lifestyle-toggle .accordion-header span {
    font-weight: 600;
    margin-right: 6px;
  }

  .lifestyle-content {
    display: none;
    margin-top: 20px;
  }

  .lifestyle-content.active {
    display: block;
  }

  .lifestyle-form-group {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
  }

  .lifestyle-form-group label {
    width: 180px;
    color: #888;
    font-size: 14px;
  }

  .lifestyle-form-group .dropdown-wrapper {
    position: relative;
    width: 100%;
  }

  .lifestyle-form-group .dropdown-selected {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 10px;
    background: #fff;
    cursor: pointer;
    font-size: 14px;
    color: #333;
  }

  .lifestyle-form-group .dropdown-options {
    display: none;
    position: absolute;
    top: 105%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #dc3545;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 999;
    grid-template-columns: repeat(3, 1fr);
    padding: 10px;
  }

  .lifestyle-form-group .dropdown-options.active {
    display: grid;
    gap:8px;
  }

  .lifestyle-form-group .dropdown-options div {
    padding: 10px;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .lifestyle-form-group .dropdown-options div:hover,
  .lifestyle-form-group .dropdown-options div.selected {
    background: #dc3545;
    color: #fff;
  } 
  
  
  
  .more-options-section {
    margin-top: 30px;
  }

  .more-options-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    margin: 20px 0;
    cursor: pointer;
  }

  .more-options-toggle .accordion-header {
    font-size: 16px;
    color: #333;
    text-align: center;
    user-select: none;
  }

  .more-options-toggle .accordion-header span {
    font-weight: 600;
    margin-right: 6px;
  }

  .more-options-content {
    display: none;
    margin-top: 20px;
  }

  .more-options-content.active {
    display: block;
  }

  .more-options-group {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
  }

  .more-options-group label {
    width: 200px;
    color: #888;
    font-size: 14px;
  }

  .more-options-group .dropdown-wrapper {
    position: relative;
    width: 100%;
  }

  .more-options-group .dropdown-selected {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 10px;
    background: #fff;
    cursor: pointer;
    font-size: 14px;
    color: #333;
  }

  .more-options-group .dropdown-options {
    display: none;
    position: absolute;
    top: 105%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #dc3545;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 999;
    grid-template-columns: repeat(3, 1fr);
    padding: 10px 0;
  }

  .more-options-group .dropdown-options.active {
    display: grid;
    gap:8px;
  }

  .more-options-group .dropdown-options div {
    padding: 10px;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .more-options-group .dropdown-options div:hover,
  .more-options-group .dropdown-options div.selected {
    background: #dc3545;
    color: #fff;
    gap:8px;
  }
  
 .accordion-section {
      background: #f8f9fa;
      padding: 0px 8px;
      margin-bottom: 20px;
      border-radius: 8px;
      transition: background 0.3s;
    }
    .accordion-section.active {
      background: #ffffff;
    }
    .accordion-header {
      text-align: center;
      font-size: 16px;
      font-weight: 600;
      color: #333;
      margin: 0;
      cursor: pointer;
    }  
  
  
    .menu-container {
      display: flex;
      background: #f5f5f5;
      border-radius: 6px;
      overflow: visible;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      width: 800px;
      margin: auto;
      position: relative;
    }
    .menu-left {
      width: 200px;
      background: white;
      border-right: 1px solid #ddd;
      position: relative;
      z-index: 2;
    }
    .menu-item {
      padding: 15px;
      cursor: pointer;
      border-bottom: 1px solid #eee;
      transition: background 0.3s ease;
    }
    .menu-item:hover, .menu-item.active {
      background: #e9ecef;
      font-weight: 600;
    }
    .menu-right {
      flex: 1;
      background: #f1f1f1;
      min-height: 220px;
      position: relative;
      display: flex;
      align-items: start;
    }
    .submenu {
      display: none;
      margin-left: 0px;
      width: 100%;
      background: #f1f1f1;
      padding: 16px 20px;
      box-sizing: border-box;
      border-radius: 6px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }
    .submenu.active {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }
    .submenu a {
      display: block;
      padding: 8px 12px;
      background: white;
      border-radius: 4px;
      text-decoration: none;
      color: #333;
      box-shadow: 0 1px 3px rgba(0,0,0,0.08);
      transition: background 0.3s ease;
      font-size: 14px;
    }
    .submenu a:hover {
      background: #dc3545;
      color: white;
    }
    #default-msg {
      padding: 30px;
      font-size: 14px;
      color: #888;
    }
  