.investoram-form {
    max-width: 1114px;
    width: 1114px;
    background-color: #EBEFFF;
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.form-content__investoram {
    position: relative;
    width: 100%;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.investoram-form p {
    text-align: center;
}

.w-50 {
    width: 50%;
}

.form-input__investoram {
    width: 100%;
    background-color: #fff;
    height: 56px;
    padding: 16px 24px;
    border-radius: 8px;
    position: relative;
    box-sizing: border-box;
}

.form-input__investoram::placeholder {
    color: #A3A3A3;
    font-size: 16px;
}

.form-row__investoram {
    gap: 24px;
    width: 100%;
    position: relative;
    flex-grow: 1;
}

.investoram-row{
    display: flex;
    flex-direction: row;
}

.form-area__investoram {
    background-color: #fff;
    border-radius: 8px;
    height: 200px;
    width: 100%;
    position: relative;
    resize: none;
    padding: 16px 24px;
    outline: none;
}
.form-area__investoram::placeholder{
    color: #A3A3A3;
    font-size: 16px;
}

@media screen and (max-width: 1024px) {
    .form-row__investoram {
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    .form-row__investoram {
        flex-direction: row;
        gap: 8px;
    }
    .form-content__investoram {
        gap: 8px;
    }
}

@media screen and (max-width: 650px) {
    .w-50 {
        width: 100%;
    }
    .investoram-row {
        flex-direction: column;
    }
}



.custom-multiselect .dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    width: 100%;
    z-index: 100;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    max-height: 250px;
    overflow-y: auto;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
}

.custom-multiselect .dropdown.show {
    display: block;
}

.custom-multiselect .option {
    position: relative;
    padding: 12px 16px 12px 48px;
    font-size: 16px;
    color: #000;
    cursor: pointer;
    transition: background-color 0.2s ease;
    user-select: none;
}

.custom-multiselect .option:hover {
    background-color: #f9f9f9;
}

.custom-multiselect .option .checkbox-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 1.5px solid #b3b3b3;
    border-radius: 4px;
    background: #fff;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

.custom-multiselect .option.selected {
    background-color: #f0f7ff !important;
    color: #007bff !important;
}

.custom-multiselect .option.selected .checkbox-icon {
    background-color: #007bff !important;
    border-color: #007bff !important;
}

.custom-multiselect .option.selected .checkbox-icon::after {
    content: '';
    position: absolute;
    left: 4px;
    width: 6px;
    height: 10px;
    border: solid white !important;
    border-width: 0 2px 2px 0 !important;
    transform: rotate(45deg);
    display: block !important;
}

.custom-multiselect {
    position: relative;
    width: 100%;
}

.custom-multiselect .selected-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}


.custom-multiselect .tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f0f7ff;
    color: #007bff;
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 14px;
    line-height: 1;
    max-width: 100%;
    white-space: normal;
    word-break: break-word;
}
.custom-multiselect .tag-remove {
    border: none;
    background: none;
    color: #007bff;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    padding: 0;
}
.custom-multiselect .tag-remove:hover {
    color: #0056b3;
}
.custom-multiselect .select-display {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    min-height: 56px;
    height: auto;
    width: 100%;
    padding: 10px 40px 10px 16px;
    background: #fff;
    border-radius: 8px;
    box-sizing: border-box;
    cursor: pointer;
}

.custom-multiselect #selected-text {
    flex: 1;
    min-width: 0;
    height: 34px;
    border: none;
    outline: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.custom-multiselect .select-label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #A3A3A3;
    font-size: 16px;
    pointer-events: none;
}
.custom-multiselect .select-display.has-value .select-label {
    display: none;
}

.custom-multiselect .select-display .arrow {
    top: auto;
    bottom: 16px;
}