/**
 * Custom BBPress Styles
 */

/* Avatar edit link */
.bbp-user-avatar-edit-link {
    text-align: center;
    margin-top: 10px;
    font-size: 0.9em;
}

/* Button to show avatar form */
.bbp-avatar-edit-button {
    display: inline-block;
    padding: 5px 10px;
    background: #f0f0f0;
    border-radius: 3px;
    text-decoration: none;
    border: 1px solid #ddd;
    cursor: pointer;
    font-size: 12px;
    font-weight: normal;
    line-height: 1.5;
    color: #333;
}

.bbp-avatar-edit-button:hover {
    background: #e0e0e0;
    border-color: #ccc;
}

/* Form styling */
.bbp-user-avatar-edit-link h3 {
    font-size: 14px;
    margin: 5px 0;
}

.bbp-user-avatar-edit-link a,
.bbp-user-avatar-edit-link input[type="submit"] {
    display: inline-block;
    padding: 3px 8px;
    background: #f0f0f0;
    border-radius: 3px;
    text-decoration: none;
    border: 1px solid #ddd;
    cursor: pointer;
    font-size: 12px;
    font-weight: normal;
    line-height: 1.5;
}

.bbp-user-avatar-edit-link a:hover,
.bbp-user-avatar-edit-link input[type="submit"]:hover {
    background: #e0e0e0;
    border-color: #ccc;
}

/* Hide the description to make the form more compact */
.bbp-user-avatar-edit-link p.description {
    display: none;
}

/* Make sure the avatar upload form doesn't break the layout */
.bbp-user-avatar-edit-link form,
.bbp-user-avatar-edit-link fieldset {
    margin: 5px 0;
    padding: 5px 0;
}

/* Add button styling to match forums */
.bbp-user-avatar-edit-link input[type="file"] {
    font-size: 12px;
    margin: 3px 0;
}