.container{
    width: 100%;
    display: grid;
    margin-top: 30px;
    margin-left: 10px;
    grid-template-columns: auto;
    grid-auto-rows: minmax(300px auto);
    grid-gap: 10px;
    grid-template-areas: 
    "lijevo desno"
    ; 
    
}
.raspored{
    
    grid-area: lijevo;
    align-self: start;
    justify-self: start; 
   
}
.tablica{
    grid-area: desno;
    align-self: start;
    justify-self: start; 
}

table th{
    font-size: 12px;
    text-align: left;
    background-color: white;
    color: black;
    border: 1px solid blue;
    padding: 4px 30px 4px 8px;
}
table td{
    font-size: 12px;
    background-color: white;
    color: black;
    border: 1px solid blue;
    padding: 4px 8px;
    
}


.raspored h3{
    color: white;
    text-align: center;
    margin-bottom: 10px;
}
.tablica h3{
    color: white;
    text-align: center;
    margin-bottom: 10px;   
}

@media screen and (max-width: 700px) {
    .container{
        width: 100%;
        height: 100%;
        padding-top: 10px;
        margin: 10px;
        grid-gap: 5px;
        grid-template-areas: 
        "desno"
        "lijevo"
        ;
    }

    table th{
        font-size: 8px;
        text-align: left;
        background-color: white;
        color: black;
        border: 1px solid blue;
        padding: 4px 30px 4px 8px;
    }
    table td{
        font-size: 8px;
        background-color: white;
        color: black;
        border: 1px solid blue;
        padding: 4px 8px;
    }
}