/* Virtual Games Predictor - Στυλ */

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

.vgapp-predict-container h3 {
    color: #2c3e50;
    margin: 0 0 20px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

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

.vgapp-form label {
    font-weight: 600;
    color: #34495e;
}

.vgapp-form input[type="text"] {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 200px;
    font-size: 16px;
}

.vgapp-button {
    padding: 10px 25px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s;
}

.vgapp-button:hover {
    background: #2980b9;
}

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

.vgapp-prediction-result h4 {
    color: #2c3e50;
    margin: 20px 0 10px;
}

.vgapp-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}

.vgapp-card-header {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.vgapp-card-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px 20px;
}

.vgapp-card-details div {
    padding: 5px 0;
}

.vgapp-card-details strong {
    color: #34495e;
}

.vgapp-card-details code {
    background: #ecf0f1;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 14px;
}

@media (max-width: 600px) {
    .vgapp-form {
        flex-direction: column;
        align-items: stretch;
    }
    .vgapp-form input[type="text"] {
        width: 100%;
    }
}