﻿table{
    left: 0px;
    float: left;
    width: 100px;
    height: 0;
}

td{
    height: 50px;
    min-width: 150px;
    border: 2px solid black;
}

.OverflowScroll{
    height: 50px;
    display: block;
    overflow-y: auto;
}

.SearchBar{
    display: block;
    float: left;
    margin: 0 50px 20px 50px;
}

.RadiobuttonContainer{
    overflow-y: scroll;
    width: 85%;
    min-width: 1560px;
    margin-left: 50px;
    height: 500px;
}

input[type=radio] {
    width: 50px;
    min-width: 0px;
    padding-top: 50px;
    border: none;
    text-align: center;
}

label{
    font-size: 0px;
}

#Empty{
    position: fixed;
    opacity: 0;
    pointer-events: none;
}

@media only screen and (max-width: 900px)
{
    .OverflowScroll{
        font-size: 10px;
        height: 30px;
    }

    td{
        min-width: 50px;
        height: 30px;
    }

    .RadiobuttonContainer{
        min-width: 400px;
        margin-left: 10px;
    }
}

@media only screen and (max-height: 800px)
{
    .RadiobuttonContainer{
        min-height: 0;
        height: 500px;
    }
}