#caqr-form {
    max-width: 400px;
    margin: 20px auto;
    padding: 15px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    font-family: Arial, sans-serif;
}

#caqr-form input,
#caqr-form select,
#caqr-form button {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

#caqr-form input:focus,
#caqr-form select:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 4px rgba(0,115,170,0.4);
}

#caqr-form button {
    margin-top: 15px;
    color: #fff;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-in{
    background-color: rgb(64, 160, 64);
}

.btn-out{
    background-color: rgb(185, 70, 55);
}

#caqr-form button:hover {
    background: #005f8d;
}

#caqr-message {
    margin-top: 10px;
    font-size: 14px;
}