.lbs-checkin-form {
    display: grid;
    gap: 15px;
   /*  max-width: 500px; */
    margin: 30px auto;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
}

.lbs-checkin-form p {
    display: flex;
    flex-direction: column;
}

.lbs-checkin-form input,
.lbs-checkin-form textarea,
.lbs-checkin-form button {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.lbs-checkin-form button {
    background: #6772e5;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.lbs-checkin-form button:hover {
    background: #5469d4;
}

.lbs-checkin-success {
    text-align: center;
    color: #28a745;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 20px;
}

