.mg-container {
    max-width: 800px;
    margin: 20px auto;
    border: 1px solid #ddd;
    padding: 20px;
    background: #fafafa;
    border-radius: 8px;
}

.mg-container h2 {
    text-align: center;
    margin-bottom: 15px;
}

.mg-columns {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.mg-column {
    flex: 1;
}

.mg-column h3 {
    text-align: center;
    margin-bottom: 10px;
}

.mg-item {
    padding: 10px;
    margin: 5px 0;
    background: #ffffff;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.mg-item:hover {
    transform: scale(1.02);
}

.mg-item.selected {
    background: #cce5ff; /* kék */
}

.mg-item.correct {
    background: #c3e6cb; /* zöld */
    cursor: default;
}

.mg-item.wrong {
    background: #f5c6cb; /* piros */
}

.mg-controls {
    margin-top: 15px;
    text-align: center;
}

.mg-controls button {
    margin: 0 5px;
    padding: 8px 15px;
    border-radius: 4px;
    border: none;
    background: #0073aa;
    color: #fff;
    cursor: pointer;
}

.mg-controls button:hover {
    background: #005b82;
}

#mg-message {
    margin-top: 10px;
    text-align: center;
    font-weight: bold;
}

.mg-footer-msg {
    margin-top: 10px;
    text-align: center;
    font-style: italic;
}

/* Mobilon egymás alatt legyenek az oszlopok */
@media (max-width: 600px) {
    .mg-columns {
        flex-direction: column;
    }
}
