/* Virtual Games Score Matrix - Στυλ */
.vgasm-container {
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 12px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.vgasm-container h3 {
    color: #2c3e50;
    border-bottom: 2px solid #e67e22;
    padding-bottom: 10px;
    margin-top: 0;
}

.vgasm-table-responsive {
    overflow-x: auto;
    margin: 20px 0;
}

.vgasm-matrix {
    border-collapse: collapse;
    width: 100%;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.vgasm-matrix th {
    background: #e67e22;
    color: white;
    font-weight: 600;
}

.vgasm-matrix tbody th {
    background: #f39c12;
}

.vgasm-matrix .home-win {
    background-color: #d4edda; /* πράσινο ανοιχτό */
}

.vgasm-matrix .away-win {
    background-color: #f8d7da; /* κόκκινο ανοιχτό */
}

.vgasm-matrix .draw {
    background-color: #fff3cd; /* κίτρινο ανοιχτό */
}

.vgasm-matrix tfoot th {
    background: #e67e22;
}

.vgasm-matrix tfoot td {
    font-weight: bold;
    background: #f9e79f;
}

.vgasm-probs {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.vgasm-probs th {
    background: #27ae60;
    color: white;
    padding: 12px;
    font-size: 16px;
}

.vgasm-probs td {
    padding: 10px;
    text-align: center;
    font-weight: bold;
    background: #ecf0f1;
}

.vgasm-top {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.vgasm-top th {
    background: #3498db;
    color: white;
    padding: 10px;
}

.vgasm-top td {
    padding: 8px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.vgasm-note {
    font-size: 12px;
    color: #777;
    font-style: italic;
    margin-top: 20px;
}

.vgasm-error {
    background: #ffe6e6;
    color: #b30000;
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid #b30000;
}