#laddar{
    font-size: 30px;
}


div[result-container]{

    background-color: rgb(16, 15, 15);

    font-size: 20px;
    white-space: nowrap;
    width: calc(100% + 20px);

    border: 3px solid rgb(208, 208, 208);
    border-radius: 5px;
}


div[result-container] .row1{
    display: grid;
    grid-template-columns: 3fr 1fr 3fr;
    width: calc(100% - 20px);
    padding: 10px;
    background-color: rgb(16, 15, 15);
    border-radius: 5px;
}

div[result-container] .row2{
    display: grid;
    grid-template-columns: 1fr 2fr 2fr 2fr;
    width: calc(100% - 20px);
    padding: 10px;
    background-color: rgb(16, 15, 15);
    border-radius: 5px;
}


div[result-container] .row1 .home{
    background-color: rgb(0, 82, 182);
    text-align: left;
    padding: 5px;

    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;

}
div[result-container] .row1 .away{
    background-color: rgb(182, 0, 0);
    text-align: right;
    padding: 5px;

    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;

}
div[result-container] .row1 .res{
    background-color: rgb(66, 66, 66);
    text-align: center;
    padding: 5px;
}


div[result-container] .row2 .matchNr{

    background-color: rgb(0, 0, 0);
    text-align: center;
    padding: 5px;
    border-radius: 5px;

    margin-left: 4px;
    margin-right: 4px;

}


div[result-container] .row2 div[result]{
    background-color: rgb(0, 0, 0);
    text-align: center;
    padding: 5px;
    border-radius: 5px;

    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    margin-left: 4px;
    margin-right: 4px;
}

div[result-container] .row2 div[result] div[col=1]{
    text-align: left;
}
div[result-container] .row2 div[result] div[col=2]{
    text-align: center;
}

div[result-container] .row2 div[result] div[col=3]{
    text-align: right;
}


div[result-container] .row1 .home:hover{
    background-color: rgb(0, 63, 141);
    cursor: default;

}
div[result-container] .row1 .away:hover{
    background-color: rgb(138, 0, 0);
    cursor: default;
}

div[result-container] .row2 div[result]:hover, div[result-container] .row1 .res:hover{
    background-color: rgb(28, 28, 28);
    cursor: default;
}

div[result-container] .row2 .matchNr:hover{
    background-color: rgb(28, 28, 28);
    cursor: default;
}

.crown_blue{
    padding-top: 2px;
    content:url("https://crsweden.com/Ikoner/crown-blue.png");
    width: 20px !important;
    height: 20px !important;
}
.crown_red{
    padding-top: 2px;
    content:url("https://crsweden.com/Ikoner/crown-red.png");
    width: 20px !important;
    height: 20px !important;
}



#matcher_output{

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;

}

#matcher_output div[result-container]{
    width: fit-content;
    margin: 10px;
    width: 400px;
}


















