﻿.horizontal-overview-wrapper {
    display: flex;
    flex-direction: row-reverse;
    gap: 1em;
    flex: 1;
    overflow: hidden;
}

.item-list-wrapper {
    min-width: 30rem;
    flex: 1;
    border-radius: 1rem;
    height: calc(100% - 16.8rem);
}

.item-list {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0;
}

.item-list-wrapper input[type="checkbox"] {
    width: 1.6rem;
    height: 1.6rem;
}
    .item-list-wrapper .cell {
        vertical-align: middle;
    }
    .item-list-wrapper .center-cell {
        text-align: center;
        padding: 1rem 0 1rem 0.5rem;
    }
.item-list-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 1rem 0.5rem 1rem;
}
    .item-list-header button[bulk-actions-button] {
        background: transparent;
        border: none;
        display: flex;
        font-size: 1.8rem;
        transition: 0.1s ease-out;
        color: var(--light-text);
        outline: none;
    }
        .item-list-header button[bulk-actions-button]:focus {
            outline: none;
        }
        .item-list-header button[bulk-actions-button]:hover {
            cursor: pointer;
            transform: scale(1.1);
        }
        .item-list-header button[bulk-actions-button]:active {
            transform: scale(0.9);
        }
    
    .item-list-header sl-popup {
        --arrow-color: var(--border-color);
    }
    .item-list-header .actions-popup {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(min(5rem, 100%), 1fr));
        border-radius: 1rem;
        padding: 1rem;
        gap: 1.5rem;
        max-width: 30rem;
    }
    .item-list-header .actions-popup:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--glass-background);
        backdrop-filter: blur(22px);
        -webkit-backdrop-filter: blur(11px);
        border-radius: 1rem;
        box-shadow: var(--continer-outer-shadow);
        z-index: -1;
    }
    
.item-list-header-icon {
    font-size: 2rem;
    display: flex;
}

.item-list-data-header {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}


.item-list-data-item {
    border-bottom: 1px solid var(--border-color);
    border-top: 1px solid var(--border-color);
    padding: 1rem;
}


.horizontal-overview-data {
    width: 100%;
    padding: 2em;
    overflow: hidden;
}

.horizontal-overview-data-item > .column {
    padding: 0.5em 0;
}