/* CSS for Scratch Code Verifier Plugin */

/* Form styling */
#scratch-code-form {
    margin-bottom: 20px;
}

#scratch-code-form label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

#scratch-code-form input[type="text"] {
    width: 300px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
}

#scratch-code-form button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Message styling */
#verification-result {
    margin-bottom: 20px;
}

.message {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 16px;
}

.message.success {
    background-color: #dff0d8;
    color: #3c763d;
    border: 1px solid #d6e9c6;
}

.message.error {
    background-color: #f2dede;
    color: #a94442;
    border: 1px solid #ebccd1;
}
