.sequence_element_container {
    display: flex;
    gap: .06rem;
    align-items: flex-start;
    justify-content: start;

    width: 98%;
    height: 1.3rem;

    padding-top: .1rem;
    padding-bottom: .1rem;
    padding-left: .2rem;

    /* background: red; */

    font-size: 10px;

    overflow-x: auto;
}

.sequence_element {
    min-width: 1rem;
    max-width: 1rem;
    min-height: 1rem;
    max-height: 1rem;
    line-height: .7;

    border: 3px solid black;
    border-radius: 50%;

    display: flex;
    align-items: center; 
    justify-content: center;

    font-weight: 600;

    text-align: center;
    cursor: pointer;
    
    padding-right: .02rem;
    padding-top: .03rem;
    
}

.sequence_select_element {
    border-color: #7b1e23;
    color: #7b1e23;
}

.add_remove_sequence_element {
    min-width: 1rem;
    max-width: 1rem;
    min-height: 1rem;
    max-height: 1rem;
    line-height: .7;
    
    border: 3px solid black;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 600;

    cursor: pointer;

    text-align: center;
}

.add_sequence_element {
    margin-left: .05rem;
    margin-right: .05rem;
}
.remove_sequence_element {
    margin-right: .05rem;
}
