body {
    margin: 0;
    padding: 20px;
    font-family: Arial, Helvetica, sans-serif;
    background: #f3f5f7;
}

.page-title {
    text-align: center;
    margin-bottom: 25px;
}

.path-row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.path-label {
    background: #000;
    color: #fff;
    font-weight: bold;
    padding: 10px 8px;
    border-radius: 4px;
    margin-right: 8px;
    width: 70px;
    text-align: center;
}

.semi-col {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.semi-title {
    font-size: 11px;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 4px;
}

.mid-col {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.match {
    width: 230px;
    background: #1d1d1d;
    border-radius: 4px;
    border: 1px solid #ddd;
    padding: 6px;
}

.team {
    display: flex;
    align-items: center;
    padding: 4px 6px;
    margin-bottom: 4px;
    cursor: pointer;
    border-radius: 3px;
    border: 1px solid transparent;
    transition: background 0.2s, border 0.2s;
}

.team img {
    width: 20px;
    height: 14px;
    margin-right: 6px;
    object-fit: cover;
}

.team-name {
    font-size: 12px;
	color: #d8d8d8
}

.team:hover {
    background: #9f7c37;
    border-color: #393939;
}

.team.selected {
    background: #bd954a;
    border-color: #000;
}

.slots-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.slot {
    min-width: 150px;
    min-height: 34px;
    padding: 4px;
    border-radius: 4px;
    border: 1px dashed #999;
    background: #1d1d1d;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.slot:hover {
    border-style: solid;
}

.vs-badge {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #000;
    color: #1d1d1d;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 8px;
    font-weight: bold;
}

.slot-team {
    display: flex;
    align-items: center;
}

.slot-team img {
    width: 20px;
    height: 14px;
    margin-right: 4px;
}

.slot-team span {
    font-size: 11px;
}

.final-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.final-title {
    font-size: 11px;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 4px;
}