.actionbtns {
    align-self: normal;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding-top: 6px;
    width: 100%;
    justify-items: start;
}

.actionbtn {
    /* max-width: fit-content; */
    margin: 2px;
    background: rgba(25, 118, 210, 1);
    color: #ffffff;
}

.buttonIcon {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 14px;
    line-height: 1.5;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    color: #ffffff;
    background-color: rgba(25, 118, 210, 1);
    height: auto;
    padding: 6px 12px;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.buttonIcon:hover {
    color: #ffffff;
    background-color: rgba(21, 101, 192, 1);
    box-shadow: 0 2px 6px rgba(25, 118, 210, 0.4);
    text-decoration: none;
    opacity: 1;
}

.buttonIcon:active {
    background-color: rgba(13, 71, 161, 1);
    box-shadow: 0 1px 3px rgba(25, 118, 210, 0.4);
}

.buttonIcon:disabled {
    cursor: not-allowed;
    background-color: rgba(0, 0, 0, 0.12);
    color: rgba(0, 0, 0, 0.38);
    box-shadow: none;
}

.buttonIcon img {
    padding: 2px 4px;
}

.iconButtonText {
    padding-left: 4px;
}

/*---- Side bar Vertical Action buttons ----*/
.vertical_actionbtns {
    display: -ms-grid;
    display: grid;
    width: 100%;
    -ms-grid-columns: 38px;
    grid-template-columns: 38px;
    -ms-grid-rows: (auto)[4];
    grid-template-rows: repeat(4, auto);
    grid-row-gap: 8px;
    justify-items: center;
    color: black;
    padding-top: 12px;
}

.vertical_actionbtns button {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
    background-color: rgba(255, 255, 255, 0.9);
    box-sizing: border-box;
    color: black;
    border: 1px hidden transparent !important;
    border-bottom: 4px solid #D65872 !important;
    display: inline-block;
    transition: all 0.6s ease 0s;
}

.vertical_actionbtns button,
.vertical_actionbtns button span {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    -webkit-text-orientation: mixed;
    text-orientation: mixed;
    padding: 0;
    margin: 0;
    width: 22px;
}

.vertical_actionbtns button span {
    transform: rotate(180deg);
    padding: 2px;
}

.vertical_actionbtns button:active,
.vertical_actionbtns button:focus,
.vertical_actionbtns button:hover {
    background-color: rgba(252, 214, 112, 0.98);
    border-color: #9c2200;
    transition: all 0.4s ease 0s;
    border-bottom: 4px solid #000000 !important;
}

.vertical_actionbtns__row1 {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1 / 2;
}

.vertical_actionbtns__row2 {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2 /3;
}

.vertical_actionbtns__row3 {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3 / 4;
}

.vertical_actionbtns__row4 {
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    grid-row: 4 / 5;
}

.vertical_actionbtns--orange {
    color: coral;
}

.vertical_actionbtns--green {
    color: green;
}

.vertical_actionbtns--red {
    color: red;
}

@media screen and (max-width: 1099px) {
    .actionbtns {
        display: flex;
        flex-wrap: wrap;
    }

    .actionbtns__col1,
    .actionbtns__col2,
    .actionbtns__col3,
    .actionbtns__col4,
    .actionbtns__col5,
    .actionbtns__col6,
    .actionbtns__col7,
    .actionbtns__col8,
    .actionbtns__col9,
    .actionbtns__col10 {
        
    }
}