/* Styles pour le jeu de labyrinthe de LogiCréatif */

.game-area {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 20px;
}

#labyrinthe-canvas {
    background-color: white;
    border: 1px solid #ddd;
    max-width: 100%;
    height: auto;
}

.control-panel {
    background-color: #ffffff;
    border-radius: 10px;
}

.command-buttons .btn {
    font-size: 1rem;
    padding: 8px 15px;
}

#program-container {
    min-height: 150px;
    border-radius: 6px;
    overflow-y: auto;
    font-family: monospace;
}

.command-item {
    padding: 8px;
    margin: 5px 0;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.command-avancer {
    background-color: rgba(13, 110, 253, 0.1);
    border-left: 3px solid #0d6efd;
}

.command-gauche {
    background-color: rgba(13, 202, 240, 0.1);
    border-left: 3px solid #0dcaf0;
}

.command-droite {
    background-color: rgba(13, 202, 240, 0.1);
    border-left: 3px solid #0dcaf0;
}

.btn-remove-command {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    font-size: 0.8rem;
}

.level-selector .btn-group {
    width: 100%;
    display: flex;
}

.level-selector .btn {
    flex: 1;
}

#help-panel {
    border-left: 4px solid #0d6efd;
}

@media (max-width: 768px) {
    .game-area {
        padding: 10px;
    }
}
