.team-summary {
    display: flex;
    gap: 10px;
}
.panel {
    flex: 1;
    background-color: #fff;
    box-shadow: 0 20px 40px 0 rgba(6,25,40,.1);
    padding: 0 20px 20px 20px;
}
.team-summary h3 {
    text-align: center;
    border-bottom: 1px solid #eee;
}
.table {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.table table {
    border-collapse: collapse;
}
.table tr:nth-child(even) {
    background-color: rgb(248, 248, 248);
}
.table td {
    padding: 0 2px;
}
.form-tiles {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2px;
}






.condition {
    width: 30px;
    height: 30px;
    display: inline-block;
    position: relative;
    border-radius: 8px;
    margin: 1px;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
}
.condition-win {
    background-color: limegreen;
}
.condition-lose {
    background-color: red;
}
.condition-draw {
    background-color: orange;
}
.condition-draw-win {
    background: linear-gradient(135deg, limegreen 75%, orange 25%);
}
.condition-draw-lose {
    background: linear-gradient(135deg, red 75%, orange 25%);
}
.condition-popup {
    display: none;
    position: absolute;
    background-color: #2b2b2b;
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    font-size: 13px;
    top: 40px;
    white-space: nowrap;
    font-weight: normal;
    z-index: 10;
}
.condition .condition-popup::after {
    content: " ";
    position: absolute;
    bottom: 100%;
    left: 15px;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent black transparent;
  }
.condition:hover .condition-popup {
    display: block;
}
.letter-div {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}




.results {
    display: flex;
    justify-content: center;
    gap: 5px;
}
.results h3 {
    text-align: center;
    border-bottom: 1px solid #eee;
}
@media(max-width: 600px) {
    .results {
        flex-direction: column;
    }
}


.panel {
    flex: 1;
    background-color: #fff;
    box-shadow: 0 20px 40px 0 rgba(6,25,40,.1);
    padding: 0 20px 20px 20px;
}
.panel-top {
    text-align: center;
    font-size: 14px;
    padding: 5px 0;
}
.panel-nadpis {
    border-bottom: 1px solid #eee;
    text-align: center;
}
.panel-nadpis h3 {
    margin: 12px 0;
}