body{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    font-size: 13px;
    line-height: 18px;
    color:#222;
    background: #f1f1f1;
}
a:hover{
    color:#7ab1ba;
}
img{
    border: 0;
}
p{
    margin: 0 0 8px;
}
.inputs-holder{
    border: 1px solid #434343; 
    padding: 8px 16px;
    text-align: center;
    background: #eee;
    margin: 8px auto;
}
.inputs-holder input{
    width: 64px;
    padding: 0;
    outline: 0;
    border: 1px solid #ccc;
    background: #fff;
    text-indent: 0;
    text-align: center;
    color: #222;
    font-family: sans-serif;
    font-size: 12px;
    line-height: 22px;
    display: inline-block;
    margin: 1px;
}
.inputs-holder input:first-child {
    display: block;
    width: fit-content;
    margin: 0 auto;
}
button{
    font-family: sans-serif;
    width:100%;
    padding: 2px;
    display: block;
    text-align: center;
}

.main-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 16px;
    background: #fff;
}

.buttons-holder {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin: 8px 0;
}

#results{
    font-size: 14px;
    line-height: 22px;
    color: #0b7eba;
    font-weight: 700;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}
#results .ball{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #0b7eba;
    color: #fff;
    font-weight: 700;
    padding: 8px;
    line-height: 20px;
}


#drawsTableContainer{
    width: 100%;
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
    overflow-x: scroll;
}
#drawsTableContainer table{
    width: 600px;
    border-collapse: collapse;
    margin: 0 auto;
}
#drawsTableContainer table th{
    background: #434343;
    color: #fff;
    padding: 8px;
    border: 1px solid #434343;

}
#drawsTableContainer table td{
    border: 1px solid #434343;
    padding: 8px;
}
#drawsTableContainer table td:first-child{
   font-weight: 700;
}

#loader {
    text-align: center;
    padding: 20px;
    margin: 20px 0;
}

.loader-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #0b7eba;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}