/* Frontend Profile Form Styles */
.apm-profile-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
}

.apm-profile-title {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
}

/* Button styles - black with white text as requested */
.apm-button-black .button,
.apm-button-black .apm-upload-button,
.apm-button-black .apm-save-button {
    background-color: #000 !important;
    color: #fff !important;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

.apm-button-black .button:hover,
.apm-button-black .apm-upload-button:hover,
.apm-button-black .apm-save-button:hover {
    background-color: #333 !important;
}

/* Form layout */
.apm-profile-form {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.apm-field-category {
    margin-bottom: 30px;
}

.apm-field-category h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.apm-form-group {
    margin-bottom: 20px;
}

.apm-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
}

.apm-form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.apm-form-control:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0,115,170,0.2);
}

/* Profile picture section */
.apm-profile-picture-preview {
    width: 150px;
    height: 150px;
    border: 2px dashed #ddd;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 15px;
}

.apm-profile-picture {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.apm-profile-picture-placeholder {
    color: #999;
    text-align: center;
    padding: 20px;
}

/* Success message */
.apm-success-message {
    background: #4CAF50;
    color: white;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    text-align: center;
}

/* Responsive design */
@media (max-width: 768px) {
    .apm-profile-form {
        padding: 20px;
    }
    
    .apm-profile-picture-preview {
        width: 120px;
        height: 120px;
    }
}