/*
 * Styles for the Soccer Exchange front‑end interface.
 * Provides basic layout, table styling, and button colours for buy/sell actions.
 */

.soccer-exchange-container {
    margin: 20px;
}

.soccer-exchange-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.soccer-exchange-table th,
.soccer-exchange-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

.soccer-exchange-table th {
    background-color: #f4f4f4;
}

.se-buy-button {
    background-color: #4CAF50;
    color: white;
    padding: 4px 8px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
}

.se-sell-button {
    background-color: #f44336;
    color: white;
    padding: 4px 8px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
}

.se-up {
    color: #4CAF50;
    font-weight: bold;
}

.se-down {
    color: #f44336;
    font-weight: bold;
}

.soccer-exchange-table tr:nth-child(even) {
    background-color: #f9f9f9;
}