.moseo_breadcrumb-wrapper {
	display: flex;
	flex-direction: column;
	gap: 1rem;
  margin-top: 12px;
}
/* Settings Section */
.moseo_setting_section {
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.moseo_setting_content {
  background: #fff;
  border-radius: 12px;
  padding: 20px 24px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  width:100%;
}

/* Container Styles */
.moseo_container {
  display: flex;
  align-items: center;
  padding: 0.89rem;
  /* border-bottom: 1px solid #c5c5c5; */
  font-family: "SF Pro Display", sans-serif;
}

.moseo_breadcrumb_title a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.moseo_breadcrumb_title a:hover {
  opacity: 0.9;
}

.moseo_breadcrumb_title a:focus,
.moseo_breadcrumb_title a:active,
.moseo_breadcrumb_title a:hover {
  outline: none;
  border: none;
  box-shadow: none;
  text-decoration: none;
}

.moseo_container_code {
  display: flex;
  justify-content: space-between;
}

.moseo_code_wrapper {
  display: flex;
  gap: 2rem;
  margin-bottom: 1rem;
}

.moseo_code_box {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  letter-spacing: var(--moseo-letter-spacing);
}

.moseo_code_box input[type="radio"] {
  margin: 0;
  cursor: pointer;
  accent-color: #0052CC;
}
.moseo_code_box input[type="radio"]:checked {
  border-color: #0052CC;
  accent-color: #0052CC;
}
.moseo_code_input_wrapper {
  position: relative;
  width: 78%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
label.moseo_code_input_label {
  font-size: 14px;
  letter-spacing: var(--moseo-letter-spacing);
}
.moseo_og {
  border: 1px solid #ccc;
  padding: 8px 12px;
  border-radius: 8px;
  margin-top: 12px;
}
.moseo_code_input {
  border-radius: 8px !important;
  border: 1px solid #ccc !important;
  height: 40px;
  width: 100%;
  padding-right: 50px;
}

.moseo_copy_icon {
  position: absolute;
  right: 5px;
  top: 72%;
  transform: translateY(-50%);
  padding: 5px 7px;
  border: none;
  background: white;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
  z-index: 10;
}

.moseo_copy_icon:hover {
  background: #f0f0f0;
}

.moseo_copy_popup {
  position: absolute;
  right: 5px;
  top: calc(72% - 50px);
  background: #333;
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  z-index: 20;
  display: none;
  animation: moseo_popup_fadein 0.3s ease-in;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.moseo_copy_popup::after {
  content: '';
  position: absolute;
  top: 100%;
  right: 12px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #333;
}

@keyframes moseo_popup_fadein {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.moseo_t_toggle-container {
  display: flex;
  align-items: center;
}

.moseo_t_toggle {
  width: 40px;
  height: 20px;
  background: #ccc;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s;
}

.moseo_t_toggle::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  top: 1.7px;
  left: 2px;
  transition: transform 0.3s;
}

.moseo_t_toggle.moseo_t_active {
  background: #3858E9;
}

.moseo_t_toggle.moseo_t_active::before {
  transform: translateX(20px);
}

.moseo_t_help-text {
  color: #777;
  font-size: 14px;
  margin: 0;
}

.moseo_lable_input {
  width: 78%;
}
.moseo_lable_input input {
  width: 100%;
  height: 40px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.moseo_t_input-box {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

/* Separator Section */
.moseo_breadcrumb-section {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
  border-bottom: 1px solid #E0E0E0;
}
.moseo_toggle-wrapper {
  border-radius: 12px;
  padding: 16px 24px;
  border: 1px solid #E0E0E0;
  width: 72.2%;
}
.moseo_separator-options {
  display: flex;
  gap: 12px;
  margin: 12px 0;
}

.moseo_separator-btn {
  width: 48px;
  font-size: 22px;
  background: #fff;
  color: #000;
  border: 2px solid #ddd;
  border-radius: 12px;
  cursor: pointer;
  transition: .3s;
  display: flex;
  padding-bottom: 1px;
  justify-content: center;
  align-items: center;
  padding: 0.6rem 1rem;
}
.moseo_custom-separator {
  display: flex;
  flex-direction: column;
}
.moseo_toggle-container {
  display: flex;
  justify-content: space-between;
}
.moseo_separator-btn:hover {
  background: #E6F0FF;
}

.moseo_separator-active {
	background: #E6F0FF;
    border-color: #4D94FF;
    color: #4D94FF;
}

.moseo_custom-separator label {
  font-size: 14px;
  letter-spacing: 0.5px;
  color: #000;
}

.moseo_custom-separator input {
  width: 78%;
  border-radius: 8px;
  height: 40px;
  border: 1px solid #ccc;
  background: #fff;
  margin-top: 8px;
}

.moseo_section-title {
  letter-spacing: var(--moseo-letter-spacing);
  font-size: 16px;
  margin-bottom: 12px;
}

.moseo_breadcrumb-table {
  width: 78%;
}

.moseo_breadcrumb-table table {
  width: 100%;
  border-collapse: collapse;
}

.moseo_breadcrumb-table th {
  text-align: left;
  padding-right: 2.5rem;
  font-size: 14px;
  font-weight: 500;
}

.moseo_breadcrumb-table a {
  color: #0052cc;
  font-size: 14px;
  text-decoration-line: none;
  letter-spacing: var(--moseo-letter-spacing);
  line-height: 24px;
  cursor: default;
  outline: none;
  border: none;
}

.moseo_breadcrumb-table a:focus,
.moseo_breadcrumb-table a:active,
.moseo_breadcrumb-table a:hover {
  outline: none;
  border: none;
  box-shadow: none;
  text-decoration: none;
}


.moseo_dot {
  display: flex;
  align-items: center;
  color: #0047b3;
}
.moseo-save-button {
  background-color: #0052CC;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  margin-top: 10px;
  font-size: 14px;
  cursor: pointer;
  margin-right: 0;
}
.moseo-save-button:hover {
  background-color: #0044a8;
}
.moseo_breadcrumb-table td {
  color: #757575;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 8px 0;
}
