

.container {
    max-width: 600px;
    margin-top: 20px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.missing-head {
    color: #007bff;
}

.game-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.word-container {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    padding: 10px;
    border: 2px dashed #ccc;
    min-height: 40px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.options {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.option-ml {
    padding: 10px;
    background-color: #007bff;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease;
}

.option-ml:hover {
    background-color: #0056b3;
}

.option-ml.dragging {
    opacity: 0.5;
}

#result {
    font-weight: bold;
    margin-top: 20px;
}

#score {
    margin-top: 10px;
}

.retry-button {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.retry-button:hover {
    background-color: #218838;
}
