#skillsTree {
    margin-left: 20px;
    z-index: 1000; /* High z-index to float above other elements */
    position: absolute;
    background:lightgray;
    overflow-y: auto; /* Adds scroll to the div if content is too long */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Optional: adds shadow for better visibility */
}
.nested {
    display: none;
    padding-left: 20px;
}
.category .toggle {
    cursor: pointer;
}
.interview-builder {
    position: relative; /* Needed for absolute positioning of children if using position: absolute */
    max-width: 800px;
    margin: auto;
    padding: 20px;
}
h2 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 24px;
}
button {
    margin-right: 10px;
}



.data-in {
    /* display: flex; */
    align-items: center;
    justify-content: space-between;
}
#questionTypes {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
#questions, textarea {
    margin-top: 10px;
}  