 .stats-summary {
        margin-bottom: 20px;
        font-family: Arial, sans-serif;
    }
    .stats-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }
    .stat-card {
        background: #f4f4f4;
        padding: 15px;
        border: 2px solid #FF9800;
        border-radius: 5px;
        flex: 1 0 150px;
        max-width: 200px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        text-align: center;
    }
    .stat-label {
        font-size: 14px;
        font-weight: bold;
        color: #333;
        margin-bottom: 5px;
    }
    .stat-value {
        font-size: 20px;
        font-weight: bold;
        color: #333;
    }
    
    .history-table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0;
        margin-top: 20px;
        font-family: Arial, sans-serif;
        font-size: 14px;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
        border: 2px solid #FF9800;
        border-radius: 5px;
        overflow: hidden;
    }
    .history-table th, .history-table td {
        border: 1px solid #e0e0e0;
        padding: 10px;
        text-align: center;
    }
    .history-table th {
        background-color: #f2f2f2;
        color: #333;
        font-weight: bold;
    }
    .history-table td {
        background-color: #fff;
        color: #333;
    }
    .form-box {
        display: inline-block;
        width: 18px;
        height: 18px;
        line-height: 18px;
        text-align: center;
        margin: 1px;
        border-radius: 4px;
        font-weight: bold;
        color: #fff;
        font-size: 10px;
    }
    .form-box.w { background-color: #4CAF50; }  
    .form-box.d { background-color: #FFC107; color: #000; }  
    .form-box.l { background-color: #F44336; } 
    .form-box.- { background-color: #ccc; color: #666; } 
    
    .history-table th:nth-child(9) {
        background-color: #FF9800 !important;
        color: #fff !important;
        font-weight: bold;
    }

    .history-table td:nth-child(9) {
        background-color: #F2F2F2;
        font-weight: bold;
    }
    
    /* New styles for score cells */
    .score-correct {
        background-color: #d4edda !important; /* Light green */
        font-weight: bold;
    }
    
    .score-incorrect {
        background-color: #f8d7da !important; /* Light red */
        font-weight: bold;
    }
    
    .score-pending {
        background-color: #fff3cd !important; /* Light yellow for pending matches */
    }

/* Απόκρυψη ανάλογα με συσκευή */
.desktop-only { display: table-cell; }
.mobile-only { display: none; }

/* Απόκρυψη για Desktop */
.mobile-only-row {
    display: none;
}

.history-table td.date-cell {
    display: table-cell !important;
    background: transparent;
    padding: 6px 10px;
    font-size: 14px;
    color: #626262;
}