#ccpf_frontend_form,
#ccpf_frontend_form input,
#ccpf_frontend_form select,
#ccpf_frontend_form button,
#ccpf_frontend_form label {
    font-family: 'Manrope', Arial, sans-serif;
}
/* General form styling */
#ccpf_frontend_form {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fafafa;
    font-family: Arial, sans-serif;
}

/* Labels and inputs */
#ccpf_frontend_form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

#ccpf_frontend_form input[type="text"],
#ccpf_frontend_form input[type="email"],
#ccpf_frontend_form input[type="number"],
#ccpf_frontend_form select {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border-radius: 4px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

/* Buttons */
#ccpf_frontend_form button {
    background-color: #0073aa;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

#ccpf_frontend_form button:hover {
    background-color: #005177;
}

/* Matchmaking ID section */
#ccpf_matchmaking_display {
    padding: 10px;
    background-color: #e8f5e9;
    border: 1px solid #c8e6c9;
    border-radius: 5px;
    margin-bottom: 15px;
}

/* Service fee and total amount */
#ccpf_service_label,
#ccpf_total_label {
    display: inline-block;
    font-weight: bold;
    margin-top: 10px;
}

/* Seller fields section */
#ccpf_seller_fields {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f1f1f1;
    margin-bottom: 15px;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    #ccpf_frontend_form {
        padding: 15px;
    }

    #ccpf_frontend_form button {
        width: 100%;
    }
}
