/* Style for the confirmation container */
#passmazing-flow-confirmation {
    margin: 1em 0;
    font-size: 14px;
    color: #555;
}

/* Style for the checkbox */
#passmazing-flow-checkbox {
    margin-right: 8px;
    transform: scale(1.2);
    /* Slightly larger checkbox for better visibility */
    cursor: pointer;
}

/* Style for the label */
#passmazing-flow-confirmation label {
    display: flex;
    align-items: center;
    font-weight: 400;
    cursor: pointer;
}

/* Add hover effect for better UX */
#passmazing-flow-confirmation label:hover {
    color: #0073aa;
    /* WordPress blue */
}

/* Optional: Style for disabled submit button */
#wp-submit:disabled {
    background-color: #ccc;
    border-color: #ccc;
    cursor: not-allowed;
    color: #666;
}