/* Reset des styles par défaut */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Styles de base */
body {
    font-family: 'Arial', sans-serif;
    background-color: #fafafa;
    text-align: center;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

#imgPuzzle {
    max-height: 400px;
}

#components {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.draggable {
    padding: 10px;
    background-color: #007BFF;
    color: white;
    border-radius: 5px;
    cursor: grab;
}

.drop-zone {
    width: 150px;
    height: 50px;
    border: 2px dashed #007BFF;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 10px;
}

#verify-button {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#verify-button:hover {
    background-color: #218838;
}

#result-message {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
}

#replay-button {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#replay-button:hover {
    background-color: #218838;
}
