body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.card {
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 8px;
    margin-bottom: 20px;
    border: none;
}

.card-header {
    border-radius: 8px 8px 0 0 !important;
    font-weight: 500;
}

.btn {
    border-radius: 5px;
    padding: 8px 16px;
    font-weight: 500;
}

.btn-primary {
    background-color: #0d6efd;
}

.btn-success {
    background-color: #198754;
}

.btn-info {
    background-color: #0dcaf0;
    color: #fff;
}

.table {
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 8px;
    overflow: hidden;
}

.table-dark th {
    background-color: #212529;
    color: white;
}

.score-display {
    background-color: #f8f9fa;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
}

.match-date {
    color: #6c757d;
    font-size: 0.9rem;
}

.jumbotron {
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-tabs .nav-link {
    color: #495057;
    font-weight: 500;
}

.nav-tabs .nav-link.active {
    color: #0d6efd;
    font-weight: 600;
}

/* Playoff bracket styling */
.bracket {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.bracket-round {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 220px;
}

.bracket-match {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin: 10px 0;
    padding: 10px;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bracket-team {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bracket-team-name {
    font-weight: 500;
}

.bracket-score {
    font-weight: bold;
    color: #0d6efd;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .bracket {
        flex-direction: column;
    }
    
    .bracket-round {
        width: 100%;
        margin-bottom: 20px;
    }
}