.client-data-form-wrapper {
    max-width: 800px;
    margin: 2em auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.client-data-form .form-section {
    margin-bottom: 2em;
    padding: 1em;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.client-data-form h3 {
    margin-top: 0;
    color: #333;
    border-bottom: 2px solid #eee;
    padding-bottom: 0.5em;
}

.client-data-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 1em;
}

.client-data-form .form-group {
    flex: 1;
}

.client-data-form label {
    display: block;
    margin-bottom: 0.5em;
    font-weight: 500;
}

.client-data-form input[type="text"],
.client-data-form input[type="email"],
.client-data-form input[type="tel"],
.client-data-form textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.client-data-form textarea {
    height: 100px;
}

.client-data-form .submit-button {
    background: #0073aa;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.client-data-form .submit-button:hover {
    background: #005177;
}

/* Admin styles */
.wp-list-table .column-actions {
    width: 120px;
}

.wp-list-table .view-details,
.wp-list-table .delete-entry {
    color: #0073aa;
    text-decoration: none;
}

.wp-list-table .delete-entry {
    color: #dc3232;
}