.bracket-container {
    display: flex;
    overflow-x: auto;
    padding: 0px 0;
}
.bracket-round {
    min-width: 200px;
    margin-right: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 0px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.bracket-header {
    text-align: center;
    padding: 10px;
    background: linear-gradient(135deg, #0d6efd 0%, #0dcaf0 100%);
    color: white;
    border-radius: 10px;
    margin-bottom: 15px;
}
.bracket-match {
    background: white;
    border-radius: 10px;
    padding: 0px;
    margin-bottom: 15px;
    border-left: 4px solid #0d6efd;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.bracket-match:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.team-score {
    font-weight: bold;
    font-size: 1.1em;
    color: #198754;
}
.team-vs {
    text-align: center;
    color: #6c757d;
    font-weight: bold;
    margin: 5px 0;
}
.match-date {
    font-size: 0.9em;
    color: #6c757d;
    text-align: center;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}
.winner {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-left: 4px solid #198754;
}
.team-logo-small {
    width: 30px;
    height: 30px;
    object-fit: contain;
    margin-right: 10px;
}