html body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

.header-title {
    position: fixed;
    top: 5%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.fullscreen-spinner{
    opacity: 0;
    border: 1px solid red;
}

.header-container {
    background-color: white;
    padding-left: 5px;
    padding-top: auto;
    padding-bottom: auto;
    text-align: center;
    border-bottom: 2px solid gray;
    position: fixed;
    height: 10%;
    width: 100%;
}
.sidebar-logo {
    width: 100%;
}
.sidebar-container {
    background-color: white;
    border-right: 1px solid #c8d4e3;
    height: 100%;
    width: 11%;
    position: fixed;
    z-index: 1;
    top: 0%;
}

.sidebar-button {
    background-color: white;
    border-top: 1px solid #c8d4e3;
    border-bottom: 1px solid #c8d4e3;
    padding: 5px;
    width: 100%;
    cursor: pointer;
}

.sidebar-button-active {
    background-color: #ebf0f8;
    border-bottom: 1px solid #c8d4e3;
    padding: 5px;
    width: 100%;
    cursor: pointer;
}

.option-sidebar-container {
    background-color: #ebf0f8;
    border-right: 1px solid #c8d4e3;
    top: 0%;
    height: 100%;
    width: 27%;
    left: 11%;
    padding-top: 50px;
    padding-right: 10px;
    padding-left: 10px;
    position: fixed;
    overflow-y: scroll;
}

.option-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    padding: 10px;
    border-bottom: solid 1px #c8d4e3;
    text-align: center;
}

.option-content-import{
    padding: 10px;
    margin-bottom: 20px;
}

.card-check{
    position: absolute;
    left: 90%;
    top: 7px;
}

.scope-input-group{
    margin-top: 10px;
}


.selected-level-dropdown-container {
    display: flex;
    width: 100%;
}
.level-edit-button{
    padding: 0px 12px;
}

.score-info-form {
    padding: 10px;
    margin-left: 10px;
    margin-right: 10px;
    display: grid;
}
.main-container {
    background-color: white;
    top: 0%;
    height: 100%;
    width: 62%;
    left: 38%;
    padding-left: 2%;
    padding-right: 2%;
    position: fixed;
    overflow-y: scroll;

}

.score-plot {
    margin-top: 50px;
    margin-bottom: 10px;
    overflow-x: scroll;
}


::placeholder {
    color: red;
}

.harmonic-tree-plot {
    position: relative;
    z-index: 1;
    background-color: white;
    margin-bottom: 10px;
    text-align: center;
}

.hierarchical-tree-plot {
    display: block;
    z-index: 1;
    background-color: white;
    top: 0;
    left: 0px;
    margin-bottom: 10px;
    text-align: center;
}

.dropdown-menu.show {
    max-height: 200px;
    overflow-y: auto;
}

.plot-label-dropdown {
    width: 30%;
}

.audio-player-container {
    width: 100%;
    height: 100px;
    position: absolute;
    top: 0;
    display: flex;
    z-index: 1;
}

.audio-player-container .btn {
    font-size: 200%;
    margin-left: 90%;
    margin-top: 20px;
    margin-bottom: 20px;
}

.label-check {
    position: absolute;
    right: 25px;
    bottom: auto;
    padding-top: 5px;
    padding-bottom: 3px;
    padding-left: 5px;
    padding-right: 5px;
}
.form-check {
    margin-bottom: 0px;
}
.btn-group {
    width: 100%;
}
.analysis-show-option-container{
    border-radius: 10px;
    border: 2px solid #c8d4e3;
    padding: 10px;
    background-color: #ebf0f844;
}

.analysis-show-option-container:not(:last-child){
    margin-bottom: 30px;
}

/* restyle radio items */
.radio-group .form-check {
    padding-left: 0;
    width: 100%;
}

.radio-group .btn-group > .form-check > .btn {
    width: 100%;
    height: 100%;
    align-content: center;
}


.radio-group .btn-group > .form-check:not(:last-child) > .btn {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.radio-group .btn-group > .form-check:not(:first-child) > .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    margin-left: 0px;
}

.radio-group-container .radio-group:not(:last-child) .btn-group > .form-check > .btn {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    margin-bottom: -3px;
}
.radio-group-container .radio-group:not(:first-child) .btn-group > .form-check > .btn {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}


.visible {
    display: block;
}
.analysis-input-group {
    border: 1px solid #c8d4e3;
    padding: 10px;
    margin-top: 10px;
    border-radius: 6px;
}
.invisible {
    display: none;
}