div.jQBracket .team input{
    line-height: normal !important;
    min-height: auto;
}

#bracket-challenge-leaderboard-refresh {
    margin-bottom: 15px;
}

div.jQBracket .team {
    line-height: normal;
}

div.jQBracket .team.invalid .score {
    color: red !important;
}

div.jQBracket .team.highlight {
    background-color: #3c0 !important
}

div.jQBracket .connector.highlight, div.jQBracket .connector div.connector.highlight {
    background: transparent !important;
}

div.jQBracket .team input{
    line-height: normal !important;
    font-family: Arial, sans-serif !important;
}

.bracket-challenge, .bracket-challenge-predict {
    overflow: auto;
    margin-bottom: 15px;
}

div.jQBracket .team div.label {
    color: #fff;
    height: 100%;
}

.team-wpg {
    background-color: #55565a;
}

.team-dal {
    background-color: #00843d;
}

.team-col {
    background-color: #6f263d;
}

.team-vgk {
    background-color: #333f42;
}

.team-lak {
    background-color: #111;
}

.team-edm {
    background-color: #00205b;
}

.team-tor {
    background-color: #00205b;
}

.team-ott {
    background-color: #b79257;
}

.team-tbl {
    background-color: #002868;
}

.team-fla {
    background-color: #c8102e;
}

.team-wsh {
    background-color: #041e42;
}

.team-car {
    background-color: #ce1126;
}

.team-njd {
    background-color: #000;
}

.team-stl {
    background-color: #002b88;
}

.team-min {
    background-color: #a6192e;
}

.team-mtl {
    background-color: #af1e2d;
}

.bracket-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.bracket-modal.on {
    display: block;
}

.bracket-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10001;
}

.bracket-modal-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10002;
    width: 90%;
    max-width: 500px;
}

.bracket-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    border: none;
    background: none;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.bracket-modal-close:hover {
    color: #333;
}

.bracket-modal-header {
    margin-bottom: 15px;
    padding-right: 20px;
}

.bracket-modal-header h4 {
    margin: 0;
    font-size: 1.25rem;
    color: #333;
}

.bracket-modal-body {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

.bracket-modal-body p {
    margin-bottom: 0;
}

/* Animation */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -48%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.bracket-modal.on .bracket-modal-container {
    animation: modalFadeIn 0.3s ease-out;
}