.protocolTable{
    display: flex;
    flex-direction: column;
    background-color: rgb(250,250,250);
    border-radius: 15px;
    padding: 15px;
    font-size: 14px;
    font-weight: bold;
    box-sizing: border-box;
    margin-top: 0px;
    margin-bottom: 0px;
    box-shadow: var(--grey-boxShadow);   
}


.protocolTable__deleteRoutineButton {
    height: 30px;
    width: 30px;
    flex-shrink: 0; /* Prevents the element from shrinking */
    flex-grow: 0; /* Prevents the element from growing */
    position: absolute;
    right: 0;
    transform: translateX(25%); /* Move the element to the right by 25% its own width */
    font-size: 16px;
    font-weight: bold;
    border-radius: 15px;
    background: red;
    color: white;
    box-shadow: var(--grey-boxShadow);
    text-align: center;
    line-height: 30px; /* Set line-height equal to the height for vertical centering */
}

.protocolTable__moveRoutineButton {
    height: 30px;
    width: 30px;
    flex-shrink: 0; /* Prevents the element from shrinking */
    flex-grow: 0; /* Prevents the element from growing */
    position: absolute;
    left: 0;
    transform: translateX(-25%); /* Move the element to the right by 25% its own width */
    font-size: 16px;
    font-weight: bold;
    border-radius: 15px;
    background: white;
    color: black;
    box-shadow: var(--grey-boxShadow);
    text-align: center;
    line-height: 30px; /* Set line-height equal to the height for vertical centering */
    cursor: move;
    z-index: 9998;
    cursor: grab;
}
.protocolTable__moveRoutineButton:active {
    cursor: grabbing;
}

.protocolTable__sortableSegment{
    position: relative;
    padding: 0 0 20px 0;
}

.protocolTable__changeTimeOfDayButton{
    font-size: 10px;
    padding: 2px;
    font-weight: normal;
    background-color: rgba(16, 134, 229, 0.1);
    border-radius: 3px;
    display: inline-block;
}

