.wc-customer-profile-form-wrapper,
.wc-customer-profile-search-wrapper,
.wc-customer-profile-results,
.wc-customer-profile-projects-section {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.wc-customer-profile-form-wrapper h2,
.wc-customer-profile-search-wrapper h2,
.wc-customer-profile-results h3,
.wc-customer-profile-projects-section h3 {
    color: #333;
    font-size: 1.8em;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wc-customer-profile-form-wrapper p,
.wc-customer-profile-search-wrapper p,
.wc-customer-profile-projects-section p {
    margin-bottom: 15px;
}

.woocommerce-form-row label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.woocommerce-Input, .woocommerce-Input--text, .woocommerce-Input--textarea, .input-text {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    margin-bottom: 10px;
    font-size: 1em;
}

.woocommerce-Input--textarea {
    min-height: 120px;
    resize: vertical;
}

.woocommerce-button.button {
    background-color: #007cba;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.woocommerce-button.button:hover {
    background-color: #005f8f;
}

.woocommerce-message, .woocommerce-error {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-weight: bold;
}

.woocommerce-message {
    background-color: #dff0d8;
    color: #3c763d;
    border: 1px solid #d6e9c6;
}

.woocommerce-error {
    background-color: #f2dede;
    color: #a94442;
    border: 1px solid #ebccd1;
}

.wc-customer-profile-list {
    list-style: none;
    padding: 0;
}

.wc-customer-profile-item {
    background: #f9f9f9;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #eee;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.wc-customer-profile-item .profile-thumbnail {
    flex-shrink: 0;
}

.wc-customer-profile-item .profile-thumbnail img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 2px solid #ddd;
}

.wc-customer-profile-item h4 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.5em;
}

.wc-customer-profile-item h4 a {
    text-decoration: none;
    color: #007cba;
}

.wc-customer-profile-item .profile-meta {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 10px;
}

.wc-customer-profile-item .profile-excerpt {
    margin-bottom: 10px;
}

/* Projects on Profile Page */
.wc-customer-profile-projects-list {
    list-style: none;
    padding: 0;
}

.wc-customer-profile-project-item {
    background: #f9f9f9;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.wc-customer-profile-project-item h4 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.3em;
}

.wc-customer-profile-project-item h4 a {
    text-decoration: none;
    color: #007cba;
}

.wc-customer-profile-project-item .project-meta {
    font-size: 0.85em;
    color: #666;
    margin-bottom: 10px;
}

.wc-customer-profile-project-item .project-excerpt {
    margin-bottom: 10px;
}