﻿.tablocontainer {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem;
    background-color: transparent;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 97%;
    height: auto;
    align-items: center;
}

.column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 24%;
    height: auto;
    background-color: black;
}

.match-group {
    margin-bottom: 1rem;
    width: 98%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: black;
    border: 1px solid black;
}

.match-label {
    margin-bottom: 0.2rem;
    margin-top: 0.2rem;
    color: white;
}

.box-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    width: 100%;
    height: auto;
}

.box {
    width: 80%;
    height: 33px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: white;
}

.small-box {
    width: 20%;
    height: 33px;
    background-color: white;
    border-left: 1px solid black;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width:550px) {
    .box-wrapper{
        font-size:8.5px;
    }
    .box {
        height: 33px;
    }

    .small-box {
        height: 33px;
    }
}
@media only screen and (min-width: 551px) and (max-width: 768px) {
    .box-wrapper {
        font-size: 10px;
    }
}
@media only screen and (min-width: 769px) and (max-width: 950px) {
    .box-wrapper {
        font-size: 11px;
    }
}
@media only screen and (min-width: 951px) and (max-width: 992px) {
    .box-wrapper {
        font-size: 11px;
    }
}
@media only screen and (min-width: 993px) and (max-width: 1200px) {
    .box-wrapper {
        font-size: 13px;
    }
}

