body {
    background-color: #F5F5F5;
    /* font-family: Arial, sans-serif;  */
    font-family: 'Roboto';
    margin: 0;
    padding: 0;
}

header {
    background-color: #FFA500;
    color: white;
    padding: 20px;
    text-align: center;
    /* height: 100px; */
}

nav {
    background-color: #333;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 10px;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 10px;
}

nav a:hover {
    background-color: white;
    color: #333;
}

nav div a:hover {
    background-color: white;
    color: #333;
}


.container {
    margin-top: 20px;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    margin: 10px;
    padding: 20px;
    width: 300px;
    height: fit-content;
    /* font-family: Sans-serif; */
}

.card h2 {
    color: #FFA500;
    font-size: 24px;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 600;
}

h2:after {
    content: ' ';
    display: block;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
    margin-top: 10px;
}

table {
    border-collapse: collapse;
    margin: 20px;
    width: 100%;
}

th,
td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #FFA500;
    color: white;
}

.graph {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    height: 400px;
    margin: 20px;
    width: 800px;
}


.FancyText {
    margin-top: 10px;
    font-size: 22px;
    text-align: center;
    font-weight: 600;
}

.textGreen {
    color: #90EE90;
}

.textYellow {
    color: #eeee91;
}

.textRed {
    color: #ee9191;
}

.textBlue {
    color: #91bfee;
}

.goldText {
    font-size: 50px;
    font-weight: 600;
    text-align: center;
    color: gold;
}

.silverText {
    font-size: 50px;
    font-weight: 600;
    text-align: center;
    color: silver;
}

.ownBtn {
    font-size: 18px;
    padding: 7px;
    font-weight: 400;
}

.matchlistBtn {
    font-size: 18px;
    padding: 7px;
    font-weight: 400;
    width: 100px;
}


.navButton {
    width: 60px;
    height: 35px;
    font-size: 20px;
    padding-top: 3px;
}

.roundVictory {
    background-color: #4abf33;
}

.roundEqual {
    background-color: #ff9c00;
}

.roundLost {
    background-color: #bd3b2a;
}

.roundNextMatch {
    background-color: #c8cdcd;
}
.sizeBig{
    width: 22px;
    height: 22px;
}
.sizeSmall{
    width: 13px;
    height: 13px;
}

.roundWhite {
    border-radius: 3rem;
    color: black;
    height: 22px;
    width: 60px;
    background-color: white;
    text-align: center;
    font-weight: 600;
    padding: 0;
    font-size: 12px;
    line-height: 22px;
    border-color: black;
    border-style: solid;
    border-width: 1px;
}

.round {
    display: inline-block;
    margin: 1px 1px;
    border-radius: 3rem;
    color: #fff;
    text-align: center;
    padding: 0;
    font-size: 12px;
    line-height: 22px;
}

@media (max-width : 600px){
    .VormRowWide{
        display : none;
    }
    .VormRowSmall{
        display : block;
    }
 }
 
 @media (min-width : 600px){
    .VormRowWide{
        display : block;
    }
    .VormRowSmall{
       display : none;
    }
 }


.roundTable {
    border-radius: 3rem;
    color: #fff;
    height: 22px;
    width: 22px;
    text-align: center;
    padding: 0;
    font-size: 12px;
    line-height: 22px;

}

.roundDate {
    margin: 10px 1px;
    border-radius: 3rem;
    color: #fff;
    height: 22px;
    width: auto;
    text-align: center;
    font-size: 12px;
    line-height: 22px;
}

.centerdiv {
    margin-left: auto;
    margin-right: auto;
}

.round .tooltipdatetext {
    visibility: hidden;
    /*width: 90px;*/
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    font-size: 14px;
    padding: 1px 5px;
    /* Position the tooltip */
    /* top: 100%;
    left: 50%;
    margin-left: -60px; */
    margin-top: 20px;
    margin-left: -5px;
    position: absolute;
    z-index: 1;
}

.round:hover .tooltipdatetext {
    visibility: visible;
}

.rowWin {
    background-color: #ddffdd;
}

.rowEqual {
    background-color: #ffffcc;
}

.rowLost {
    background-color: #ffdddd;
}

 
.popupTitle{
    color: #FFA500;
    font-size: 24px;
    text-align: center;
    font-weight: 600;
} 

/* .popup{
    display: none;
} */