.evems-device-register {
    max-width: 420px;
    padding: 16px;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    background: #fafafa;
    font-family: system-ui, sans-serif;
}

.evems-device-register input[type="text"],
.evems-device-register textarea {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

/* Focus state */
.evems-device-register input:focus,
.evems-device-register textarea:focus {
    border-color: #2271b1; /* WP blue */
    box-shadow: 0 0 0 1px #2271b1;
    outline: none;
}

/* Placeholder */
.evems-device-register ::placeholder {
    color: #999;
}

/* Buttons */
.evems-device-register button {
    padding: 8px 14px;
	margin-top: 20px;
	margin-bottom: 20px;
	margin-right: 8px;
    font-size: 14px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
}

#evems-confirm {
    background: #2271b1;
    color: #fff;
}

#evems-confirm:hover {
    background: #135e96;
}

#evems-cancel {
    background: #dcdcde;
    color: #1d2327;
}

#evems-response {
    margin-top: 12px;
    font-size: 13px;
}
