﻿


.selected-panel {
    position: absolute;

    left: 50%;
    transform: translateX(-50%);
    font: (var(--Gilroy-Medium));
    box-shadow: 0.1875rem 0.1875rem 0.3125rem lightgray;
    z-index: 99999 !important;
}

    .selected-panel .panel-content {
        display: flex;
        flex-direction: row;
        margin-top: 0.3125rem;
        gap:  1.25rem;
        align-items: center;
    }

        .selected-panel .panel-content .selected-count {
            justify-content: flex-start;
            flex-grow: 1;
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 0.25rem;
        }

            .selected-panel .panel-content .selected-count > div:nth-child(1) {
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                width: 1.5rem;
                height: 1.5rem;
                border-radius: 1.875rem;
                font-size: 0.75rem;
                background-color: #26BAA4;
                border: 1px solid #26BAA4;
                color: white;
            }



        .selected-panel .panel-content .commands {
            display: flex;
            flex-direction: row;
            gap: 0.625rem;
            align-items: center;
            justify-content: flex-end;
        }
