    table{
        width:100%;
        border-collapse: collapse;
        box-shadow: 0 4px 11px #00000040;
    }
    th, td{
        border: none;
        padding: 8px;
        text-align: center;
    }

    tr {
        border-bottom: 2px solid #ddd;
    }
    
    th {
        background-color: #93C11F;
        color: black;
    }

    th i {
        font-size: 18px;
    }

    .loadMoreBtn {
        background-color: transparent;
        border: none;
        color: black;
        padding: 0px;
        text-decoration: underline;
        display: inline-block !important;
        font-size: 16px;
        margin: 10px auto;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .hidden {
        display: none !important;
    }

    .loadMoreBtn:hover {
        color: #93C11F;
        font-weight: 600;
    }
    
    .to-top {
        display: none;
    }

    .floating-btn {
        position: fixed;
        font-family: "Titan One", sans-serif;
        right: 20px;
        width: 150px;
        height: 50px;
        border-radius: 5px;
        background-color: rgba(147, 193, 31, .8);
        color: black;
        text-align: center;
        line-height: 50px;
        font-size: 18px;
        cursor: pointer;
        box-shadow: 0 0 5px rgba(0, 0, 0, 1);
        z-index: 1000;
        transition: all 0.3s ease, opacity 0.3s ease;
        opacity: 0; 
    }
    
    .floating-btn:hover {
        background-color: rgba(147, 193, 31, 1);
    }
      
    #btnRozpis { 
        bottom: 70px; 
    }
    
    #btnVysledky { 
        bottom: 10px; 
    }

    .dateFilter {
        cursor: pointer;
    }

    .filter-container {
        display: none;      
        position: absolute;
        background-color: #93C11F;
        min-width: 130px;
        max-height: 350px;
        border-radius: 5px;
        font-size: 15px;
        z-index: 500;
        box-shadow: 0 4px 11px #00000040;
        padding: 8px;
        flex-direction: column; 
    }

    .filter-items {
        display: flex;        
        flex-direction: column;  
        overflow-y: auto;      
        max-height: 260px;    
        scrollbar-width: thin;  
        scrollbar-color: #666 #93C11F;
    }

    .filter-items::-webkit-scrollbar {
        width: 8px;                     
    }

    .filter-items::-webkit-scrollbar-track {
        background: #93C11F;             
        border-radius: 4px;
    }

    .filter-items::-webkit-scrollbar-thumb {
        background-color: #666;         
        border-radius: 4px;
        border: 2px solid #93C11F;      
    }

    .filter-items::-webkit-scrollbar-thumb:hover {
        background-color: #444;          
    }

    .filter-button {
        margin-top: 5px;
        flex-shrink: 0;
    }

    .filter-container label {
        color: black;
        margin-bottom: 10px;
    }

    .filter-container input {
        border-radius: 5px;
        border: none;
        text-align: center;
        margin-left: 3px;
    }

    .filter-container button {
        background-color: white;
        color: black;
        font-weight: 600;
        border: none;
        border-radius: 5px;
        padding: 3px 6px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .filter-container button:hover {
        background-color: #d8d8d8;
    }

    .categoryFilter {
        cursor: pointer;
    }

    .leagueFilter {
        cursor: pointer;
    }

    .homeFilter {
        cursor: pointer;
    }

    .awayFilter {
        cursor: pointer;
    }

    .filter-container label {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .filterCheckbox {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        width: 18px;
        height: 18px;
        border: 2px solid #333;
        border-radius: 6px;
        outline: none;
        cursor: pointer;
        position: relative;
        background-color: #fff;
    }

    .filterCheckbox:checked {
        background-color: #fff;
    }

    .filterCheckbox:checked::after {
        content: '';
        position: absolute;
        top: 3px;
        left: 6px;
        width: 6px;
        height: 10px;
        border: solid #333;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
    }

    .evenScore {
        font-weight: bold;
    }

    td.miners-win {
        color: #1eb72a !important;
        font-weight: bold;
    }

    td.miners-loss {
        color: #d62828 !important;
        font-weight: bold;
    }

    .vysledkyClearFilter {
        display: flex;
    }

    .clearFilter {
        display:none; 
        margin-left: auto; 
        margin-bottom: 5px;
        font-size:14px; 
        font-weight: bold;
        padding:3px 8px; 
        background:#d62828; 
        color:white; 
        border:none; 
        border-radius:4px; 
        cursor:pointer;
        transition: all 0.3s ease;
    }

    .clearFilter:hover {
        background-color: #b22222;
    }

    .search {
        margin-bottom: 5px; 
        padding: 3px; 
        border-radius: 4px; 
        border: 1px solid #666;
    }

    @media(max-width: 700px) {
        th, tr, td {
            font-size: 14px;
            padding: 6px;
        }

        th i {
            font-size: 14px;
        }

        .clearFilter {
            margin-bottom: 4px;
            font-size:13px; 
            padding:2px 6px; 
        }

        .loadMoreBtn {
            font-size: 14px;
            margin: 8px auto;
        }

        .filter-container {
            max-height: 340px;
            font-size: 14px;
            padding: 6px;
        }

        .filter-items { 
            max-height: 250px;     
        }

        .filter-button {
            margin-top: 4px;
        }

        .filter-container label {
            margin-bottom: 8px;
        }

        .filter-container input {
            margin-left: 3px;
        }

        .filter-container button {
            padding: 2px 4px;
        }

        .search {
            margin-bottom: 4px; 
            padding: 2px; 
        }

        .filter-container label {
            gap: 8px;
        }

        .filterCheckbox {
            width: 17px;
            height: 17px;
            border: 2px solid #333;
        }

        .filterCheckbox:checked::after {
            width: 5px;
            height: 9px;
            border-width: 0 2px 2px 0;
        }
    }

    @media(max-width: 607px) {
        th, tr, td {
            font-size: 12px;
            padding: 4px;
        }

        th i {
            font-size: 12px;
        }

        tr {
            border-bottom: 2px solid #ddd;
        }

        .clearFilter {
            margin-bottom: 6px;
            font-size: 12px; 
            padding: 0px 5px; 
        }

        .loadMoreBtn {
            font-size: 12px;
            margin: 6px auto;
        }

        .filter-container {
            min-width: 100px;
            max-height: 300px;
            font-size: 12px;
            padding: 4px;
        }

        .filter-items { 
            max-height: 220px;     
        }

        .filter-button {
            margin-top: 3px;
        }

        .filter-container label {
            margin-bottom: 6px;
        }

        .filter-container input {
            margin-left: 2px;
        }

        .filter-container button {
            padding: 1px 3px;
        }

        .search {
            margin-bottom: 3px; 
            padding: 1px; 
        }

        .filter-container label {
            gap: 6px;
        }

        .filterCheckbox {
            width: 16px;
            height: 16px;
            border: 1px solid #333;
            border-radius: 4px !important;
        }

        .filterCheckbox:checked::after {
            width: 4px;
            height: 8px;
            border-width: 0 2px 2px 0;
        }
    }

    @media(max-width: 505px) {
        th, tr, td {
            font-size: 10px;
            padding: 4px 2px;
        }

        th i {
            font-size: 10px;
        }

        tr {
            border-bottom: 1px solid #ddd;
        }

        .clearFilter {
            margin-bottom: 8px;
            font-size:10px; 
            padding:0px 5px; 
        }

        .loadMoreBtn {
            font-size: 10px;
            margin: 4px auto;
        }

        .filter-container {
            max-height: 250px;
            min-width: 70px;
            font-size: 10px;
            padding: 2px;
        }

        .filter-items { 
            max-height: 180px;     
        }

        .filter-button {
            margin-top: 2px;
        }

        .filter-container label {
            margin-bottom: 4px;
        }

        .filter-container input {
            margin-left: 1px;
        }

        .filter-container button {
            padding: 0px 2px;
        }

        .search {
            margin-bottom: 2px; 
            padding: 0px; 
        }

        .filter-container label {
            gap: 4px;
        }

        .filterCheckbox {
            width: 14px;
            height: 14px;
            border: 1px solid #333;
        }

        .filterCheckbox:checked::after {
            width: 3px;
            height: 7px;
            border-width: 0 1px 1px 0;
        }
    }

    @media(max-width: 410px) {
        th, tr, td {
            font-size: 8px;
            padding: 3px 0px;
        }

        th i {
            font-size: 8px;
        }

        .clearFilter {
            margin-bottom: 10px;
            font-size: 8px; 
            padding:0px 5px; 
        }

        .loadMoreBtn {
            font-size: 8px;
            margin: 2px auto;
        }

        .filter-container {
            max-height: 250px;
            font-size: 8px;
            padding: 1px;
        }

        .filter-items { 
            max-height: 140px;     
        }

        .filter-container label {
            margin-bottom: 2px;
        }

        .filter-container button {
            padding: 0px 2px;
        }

        .filter-container label {
            gap: 2px;
        }

        .filterCheckbox {
            width: 12px;
            height: 12px;
            border: 1px solid #333;
            border-radius: 3px !important;
        }

        .filterCheckbox:checked::after {
            left: 5px;
            top: 2px;
            width: 3px;
            height: 6px;
            border-width: 0 1px 1px 0;
        }
    }