
.stats-row {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin-bottom: 20px;
    font-size: 1.2em;
    font-weight: bold;
    background: #f8fafc;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
}

.coin-row-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    width: 100%;
}

.coin-label {
    font-weight: bold;
    color: #475569;
    min-width: 140px;
    text-align: right;
}

.coins-container {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.coin-circle {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #94a3b8;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.2em;
    background-color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.coin-circle.dimmed { opacity: 0.3; border-color: #cbd5e1; }
.coin-circle.active { background-color: #fde047; border-color: #eab308; transform: scale(1.1); }
.coin-circle.selected { background-color: #43de7c; color: white; border-color: #22c55e; }