#div-tournament-details-header {
    align-items: center;
    background-image: url("../images/background.jpg");
    background-size: cover;
    color: white;
    display: flex;
    flex-direction: column;
    height: 400px;
    justify-content: space-around;
    margin-top: -100px;
}

#img-tournament-logo {
    height: 350px;
    margin-top: -50px;
    margin-bottom: -50px;
    width: 350px;
}

.div-tournament-info {
    align-items: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

#separator {
    background-color: white;
    height: 2px;
    width: 50px;
}


#winner-names-container {
    display: flex;
    flex-direction: row;
    gap: 25px;
}

#div-details, #div-participants {
    display: flex;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
    width: 95%;
}

#div-tournament-detail-cards {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
}

.div-tournament-detail-card {
    align-items: center;
    display: flex;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    gap: 15px;
    padding: 15px;
    width: 250px;
}

.div-tournament-detail-card-icon {
    align-items: center;
    background-image: linear-gradient(144deg, #50c8da, #2b9df1);
    padding: 12px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
}

#div-results-bracket {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    width: 95%;
}

#final-results-container {
    display: flex;
    flex-direction: column;
    width: 50%;
}

#bracket-container {
    display: flex;
    flex-direction: column;
    width: 50%;
}

#bracket {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

#div-bracket-text {
    align-items: center;
    display: flex;
    flex-direction: row;
    gap: 25px;
    justify-content: space-between;
}

#placements-table {
    background-color: white;
    border-collapse: collapse;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    width: 90%;
}

.placement-1 {
    background-color: #CCAB00;
    color: white;
    font-weight: bold;
}

.placement-1-underline td {
    border-bottom: 2px solid #CCAB00;

}

.placement-2 {
    background-color: #557177;
    color: white;
    font-weight: bold;
}

.placement-2-underline td {
    border-bottom: 2px solid #557177;
}

.placement-3 {
    background-color: #CD7f32;
    color: white;
    font-weight: bold;
}

.placement-3-underline td {
    border-bottom: 2px solid #CD7F32;
}


#placement-head {
    width: 10%;
}