/* iod_ux.css */

/* tree of competencies */
#skillsTree {
    margin-left: 20px;
    z-index: 1000;
    position: absolute;
    background: lightgray;
    overflow-y: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.nested {
    display: none;
    padding-left: 20px;
}

.category .toggle {
    cursor: pointer;
}

/* buttons */
.button-13 {
    background-color: hwb(192 95% 3%);
    border: 1px solid #8dc9c9;
    border-radius: 8px;
    box-shadow: rgba(213, 217, 217, .5) 0 2px 5px 0;
    box-sizing: border-box;
    color: #121313;
    cursor: pointer;
    display: inline-block;
    font-family: sans-serif;
    line-height: 29px;
    margin-left: 10px;
    margin-right: 10px;
    padding: 0 10px;
    position: relative;
    text-align: center;
    text-decoration: none;
    user-select: none;
    vertical-align: middle;
    min-width: 100px;
    max-width: 300px;
    width: auto;
}

.button-13:hover {
    background-color: #f7fafa;
    box-shadow: 1px 1px 1px #659299;
}

.button-13:focus {
    border-color: #008296;
    box-shadow: 1px 1px 1px rgba(213, 217, 217, .5);
    outline: 0;
}

body.processing {
    cursor: wait;
}

.button-13:disabled {
    cursor: not-allowed;
    background-color: #e0e0e0;     /* Optional: Change background color for disabled state */
    color: #a0a0a0;    /* Optional: Change text color for disabled state */
    box-shadow: none;    /* Optional: Remove shadow for disabled state */
}