.stages {
    display: flex;
    grid-gap: 3px;
    margin-bottom: 10px;
}
.stages a {
    padding: 25px 45px;
    font: 20px Inter;
    font-weight: normal;
    color: rgba(0, 0, 0, 0.8);
    margin: 0;
    background-color: white;
}
.stages a:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.stages a:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.stages .selected {
    outline: 1px solid rgb(150, 150, 150);
}
.tab_container {
    display: none;
    flex-direction: column;
    width: 100%;
    grid-gap: 30px;
}
.tab_container.selected {
    display: flex;
}
.title_block {
    font: 24px Inter;
    font-weight: normal;
    color: rgba(0, 0, 0, 0.8);
    margin: 0;
    margin-bottom: 10px;
}
.subtitle_block {
    font: 14px Inter;
    font-weight: normal;
    color: rgba(0, 0, 0, 0.8);
    margin: 0;
}
.input_block:has(#subgenre-selectized[readOnly]) {
    opacity: 0.4;
}