.sportcoins-dashboard {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
}

.balance-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E5E5E5;
}

.balance-header h2 {
    color: #4A4A4A;
    font-size: 24px;
    margin-bottom: 10px;
}

.balance {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.coin-icon {
    width: 40px;
    height: 40px;
}

.balance .amount {
    font-size: 36px;
    font-weight: bold;
    color: #f19100;
}

.transactions-section h3 {
    color: #4A4A4A;
    font-size: 18px;
    margin-bottom: 20px;
}

.transactions-list {
    display: flex;
    flex-direction: column;
}

.transaction-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #EEEEEE;
}

.transaction-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.transaction-description {
    color: #333333;
    font-size: 16px;
    font-weight: 500;
}

.transaction-date {
    color: #888888;
    font-size: 14px;
}

.transaction-amount {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
    font-size: 20px;
    font-weight: bold;
}

.coin-symbol {
    font-size: 16px;
}

.positive {
    color: #F90;
}

.negative {
    color: #F90;
}

.error-message {
    text-align: center;
    color: #dc3545;
    padding: 20px;
    background-color: #f8d7da;
    border-radius: 4px;
    margin: 20px 0;
}

.no-transactions {
    text-align: center;
    padding: 20px;
    color: #666;
}

.transaction-coin-icon {
    width: 20px;
    height: 20px;
}

@media (max-width: 480px) {
    .sportcoins-dashboard {
        padding: 15px;
    }

    .balance .amount {
        font-size: 28px;
    }

    .transaction-description {
        font-size: 14px;
    }

    .transaction-date {
        font-size: 12px;
    }

    .transaction-amount {
        font-size: 14px;
    }
}