body {
    font-family: monospace;
    font-size: 14px;
    padding: 20px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

.columns {
    display: flex;
    gap: 40px;
    margin-top: 20px;
}

.column {
    flex: 1;
}

table {
    width: 100%;
    line-height: 2.0;
    border-collapse: collapse;
}

th, td {
    text-align: left;
}

th {
    border-bottom: 1px solid #000;
}

body {
    background-color: #ffffff;
    color: #000000;
}

.black-theme {
    background-color: #000000;
    color: #ffffff;
}

.black-theme th {
    border-bottom: 1px solid #ffffff;
}

.black-theme .boxed-section {
    border: 1px solid #ffffff;
}

.black-theme a {
    color: #F9A900;
}

.black-theme a:visited {
    color: #F9A900;
}

.dark-gray-theme {
    background-color: #1a1a1a;
    color: #ffffff;
}

.dark-gray-theme th {
    border-bottom: 1px solid #ffffff;
}

.dark-gray-theme .boxed-section {
    border: 1px solid #ffffff;
}

.dark-gray-theme a {
    color: #F9A900;
}

.dark-gray-theme a:visited {
    color: #F9A900;
}

#players-header,
#league-header,
#transfer-market-header,
#matches-header {
    margin-bottom: 15px;
    display: block;
}

#players-table-container table {
    line-height: 2.0;
}

#players-table-container th:nth-child(2),
#players-table-container td:nth-child(2) {
    width: 30px;
    text-align: left;
}

.player-row {
    cursor: pointer;
}

.sold-player {
    opacity: 0.5;
    text-decoration: line-through;
}

.section-hidden {
    display: none;
}

#matches-header.live {
    position: relative;
    padding-right: 20px; 
}

#matches-header.live::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: #237F52;
    border-radius: 50%;
}

.boxed-section {
    border: 1px solid #000;
    padding: 10px;
    margin: 10px 0 20px 0;
}

.original-price {
    text-decoration: line-through;
    color: #888;
    margin-right: 8px;
}

#team-name-display {
    cursor: pointer;
}

@media (max-width: 768px) {
    .columns {
        flex-direction: column;
        gap: 0px;
    }

    .column {
        width: 100%;
    }
}

a {
    color: #0000ff;
}

a:visited {
    color: #0000ff;
}
