/**
 * Theme Name:       LazyFlag NFC
 * Description:       A WordPress theme for NFC lock demonstration.
 * Version:           0.1.0
 * Author:            Parvus Vulpes Oy
 */

.nfc-lock-app {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
    /* Make it take up significant screen height */
    text-align: center;
    padding: 1.5rem;
}

#unlock-button {
    /* Make the button large for easy tapping */
    padding: 1rem 2rem;
    font-size: 1.5rem;
    font-weight: bold;
}

#nfc-status {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    min-height: 2em;
    /* Prevent layout jump when text appears */
}