﻿/*Tabele*/
.apkon-table-container {
    height: 60vh;
    overflow-y: auto;
    overflow-x: auto;
    width: 100%;
}

    .apkon-table-container table {
        border-collapse: collapse;
        vertical-align: middle;
    }

    .apkon-table-container thead th {
        position: sticky;
        top: 0;
        z-index: 1;
        background-color: #fff;
        border-bottom: 2px solid var(--primary);
        /*border-bottom: 1px solid transparent;*/
        color: var(--primary);
        white-space: nowrap;
        font-weight: 400;
    }

    /*.apkon-table-container thead th:after {
    content: '';
    position: absolute;
    background-color: var(--primary);
    width: 101%;
    height: 2px;
    bottom: 0;
    left: 0;
}*/

    .apkon-table-container th, td {
        text-align: left;
        border-bottom: 1px solid #c7c7c7;
    }

    .apkon-table-container td {
        white-space: nowrap;
    }

    .apkon-table-container thead th:after {
        content: '';
        position: absolute;
        background-color: #000;
        width: 100%;
        height: 2px;
        bottom: 0;
        left: 0;
    }

    .apkon-table-container th.apkon-sticky-column {
        position: sticky;
        right: 0;
        z-index: 3;
        background-color: #fff;
        text-align: center;
    }

    .apkon-table-container .apkon-sticky-column {
        position: sticky;
        right: 0;
        z-index: 1;
        background-color: #fff;
    }

    .apkon-table-container .apkon-table-akcje {
        display: flex;
        font-size: 14px;
        align-items: center;
    }

        .apkon-table-container .apkon-table-akcje .dropdown-menu {
            margin-right: 2px !important;
        }

        .apkon-table-container .apkon-table-akcje .btn {
            color: var(--primary);
        }

            .apkon-table-container .apkon-table-akcje .btn:hover {
                color: var(--hover);
            }

    .apkon-table-container .sort-icon {
        cursor: pointer;
        padding-right: 10px;
    }

.apkon-table-tools {
    align-items: center;
    justify-content: center;
}

.apkon-table-pagination {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}

    .apkon-table-pagination li {
        padding-right: 1px;
    }

    .apkon-table-pagination a {
        min-width: 31px;
    }

.apkon-table-container .border-bottom-0 td {
    border-bottom: 0;
}

@media (min-width: 1400px) {
    .apkon-table-tools {
        justify-content: space-between;
    }
}