/* Profile Image - нов стил за avatar placeholder */
.profile-img .profile-avatar {
    width: 120px !important;
    height: 120px !important;
    font-size: 48px !important;
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
}

.profile-img .profile-avatar:hover {
    transform: scale(1.05);
}

.profile-avatar {
    width: 40px !important;
    height: 40px !important;
    font-size: 16px !important;
}

/* Responsive за avatar */
@media (max-width: 992px) {
    .profile-img .profile-avatar {
        width: 100px !important;
        height: 100px !important;
        font-size: 40px !important;
    }
}

/* Profile Details */
.profile-details {
    flex: 1;
}