/* OUTER WRAPPER (IMPORTANT FOR MENU CLICK FIX) */
#career-tool-wrapper {
    position: relative;
    z-index: 1;
    pointer-events: auto;
}

/* TOOL BOX */
#career-tool {
    background: #f5f7ff;
    padding: 20px;
    border-radius: 10px;
    font-family: Arial, sans-serif;
}

/* HEADINGS */
#career-tool h2,
#career-tool h3 {
    color: #070E8A;
}

/* LABELS */
#career-tool label {
    color: #070E8A;
    font-weight: bold;
}

/* INPUTS */
#career-tool input,
#career-tool select {
    width: 100%;
    padding: 8px;
    margin-bottom: 12px;
}

/* BUTTONS */
#career-tool button {
    background: #EE6304;
    color: #ffffff;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
}

#career-tool button:hover {
    opacity: 0.9;
}

/* LANGUAGE SWITCH */
.lang-switch {
    margin-bottom: 15px;
}

/* STEP 2 */
#step2 {
    display: none;
    margin-top: 20px;
}

#step2.active {
    display: block;
}

/* ERROR */
#basicError {
    color: red;
    margin-top: 10px;
}

/* REPORT */
.report-box {
    margin-top: 25px;
    padding: 15px;
    border: 2px solid #070E8A;
    border-radius: 8px;
    background: #ffffff;
}

/* BARS */
.bar {
    height: 26px;
    color: #fff;
    line-height: 26px;
    padding-left: 10px;
    border-radius: 6px;
    margin-bottom: 8px;
}

.science { background: #070E8A; }
.commerce { background: #EE6304; }
.arts { background: #555; }
