/* Virtual Games Analysis Pipeline - Στυλ */

.vgap-container {
    max-width: 1400px;
    margin: 30px auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 12px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.vgap-container h2 {
    color: #1e3c72;
    margin: 0 0 5px;
}

.vgap-subtitle {
    color: #666;
    margin-top: 0;
    font-size: 16px;
}

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

.vgap-form {
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    margin: 20px 0;
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.vgap-form label {
    font-weight: 600;
    color: #333;
}

.vgap-form input[type="number"],
.vgap-form input[type="text"] {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 150px;
}

.vgap-button {
    padding: 8px 20px;
    background: #1e3c72;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

.vgap-button:hover {
    background: #2a4a8a;
}

.vgap-section {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.vgap-section h3 {
    margin-top: 0;
    color: #1e3c72;
    border-bottom: 2px solid #1e3c72;
    padding-bottom: 8px;
}

.vgap-section h4 {
    color: #2c3e50;
    margin: 15px 0 5px;
}

.vgap-table-responsive {
    overflow-x: auto;
}

.vgap-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 5px rgba(0,0,0,0.05);
}

.vgap-table th {
    background: #1e3c72;
    color: white;
    font-weight: 600;
    padding: 10px 8px;
    font-size: 14px;
    text-align: center;
}

.vgap-table td {
    padding: 8px;
    border-bottom: 1px solid #eee;
    text-align: center;
    color: #333;
}

.vgap-table tbody tr:hover {
    background: #f1f9ff;
}

.vgap-table-compact td {
    padding: 4px 6px;
    font-size: 13px;
}

.vgap-chart-container {
    background: white;
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
    border: 1px solid #e0e0e0;
}

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

/* Κάρτα πρότασης στοιχήματος */
.vgap-bet-card {
    background: #f0f7ff;
    border: 1px solid #cce5ff;
    border-radius: 8px;
    padding: 20px;
    margin-top: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.vgap-bet-header {
    font-size: 18px;
    font-weight: 600;
    color: #1e3c72;
    margin-bottom: 15px;
    border-bottom: 1px solid #cce5ff;
    padding-bottom: 8px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.vgap-bet-teams {
    color: #2c3e50;
    font-size: 16px;
}
.vgap-bet-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px 20px;
}
.vgap-bet-details div {
    padding: 5px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .vgap-form {
        flex-direction: column;
        align-items: flex-start;
    }
}