/* .page-title {
    margin-top: 0;
} */
.main-information {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.main-information .page-title {
  margin: 12px 0 24px 0;
}

.main-information .page-title__title {
  font-size: 32px;
}

.b2b__left-general {
    gap: 24px;
}

.b2b__form-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
    position: relative;
}

.b2b__toggle {
    display: flex;
    flex-direction: column;
    gap: 24px;
    cursor: pointer;
    user-select: none;
    transition: transform 0.2s ease;
}

.b2b__form-col label {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.b2b__form-col label::after {
    content: none;
}

.b2b__toggle-box {
    display: flex;
    align-items: center;
    gap: 16px;
}

.b2b__form-col input {
    padding: 16px;
    border-radius: 16px;
    background: var(--color-gray-primary);
    width: 100%;
    height: 56px;
    border: 1.5px solid transparent;
    color: var(--color-gray-label);
    font-family: var(--font-family-base);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.08px;
    resize: none;
}

.b2b__toggle-input {
    display: none;
}

.b2b__toggle-slider {
    position: relative;
    width: 48px;
    height: 24px;
    background: #e3e3e3;
    border-radius: 50px;
    transition: background 0.3s ease;
    flex-shrink: 0;
}

.b2b__toggle-slider::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.1);
}

.b2b__toggle-input:checked+.b2b__toggle-slider {
    background: var(--color-red);
}

.b2b__toggle-input:checked+.b2b__toggle-slider::before {
    transform: translateX(24px);
}

.b2b__toggle-text {
    color: #000;
    font-size: 16px;
    line-height: 1.5;
}

/* Custom Select Dropdown */
.custom-select {
    position: relative;
    width: 100%;
}

.select-selected {
    background-color: var(--color-gray-primary);
    border-radius: 16px;
    padding: 16px;
    cursor: pointer;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 56px;
}

.select-selected:after {
    content: "";
    width: 10px;
    height: 6px;
    background: url("../icons/dropdown.svg") no-repeat center;
    background-size: contain;
    transition: transform 0.3s;
}

.select-selected.select-arrow-active:after {
    transform: rotate(180deg);
}

.select-items {
    position: absolute;
    background-color: var(--color-light);
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    border-radius: 16px;
    box-shadow: 0 6px 28.1px 8px rgba(0, 0, 0, 0.25);
    margin-top: 8px;
    overflow: hidden;
    padding: 0 24px;

    max-height: 285px;
    overflow: auto !important;
}

.select-hide {
    display: none;
}

.select-items div {
    padding: 16px 0;
    cursor: pointer;
    border-bottom: 1.5px solid #e3e3e3;
}

.select-items div:hover {
    color: var(--color-red);
}

.select-items div:last-child {
    border-bottom: none;
}

.custom-select.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.custom-select.disabled .select-selected {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .select-selected {
        min-height: 44px;
        height: 44px;
        padding: 13px 12px;
        font-size: 14px;
        border-radius: 12px;
    }
}