/* 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;
    }
}

/* ========== AVATAR STYLES ========== */

/* Avatar снимки (IMG тагове) - базови стилове */
img.user-avatar,
img.author-avatar,
img.profile-image-glass {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
}

/* Specific размер за profile avatars в navbar */
img.profile-image-glass {
    width: 32px;
    height: 32px;
}

/* Base avatar placeholder (DIV) - generates initials with background color */
.avatar-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    background: linear-gradient(135deg, #4cb15c, #2e8b57);
    /* За DIV елементи - display flex */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
}

/* Ако има клас profile-image-glass на DIV */
.profile-image-glass.avatar-placeholder {
    width: 32px;
    height: 32px;
    font-size: 14px;
}

/* Sizes */
.avatar-placeholder.size-xs {
    width: 24px;
    height: 24px;
    font-size: 10px;
}

.avatar-placeholder.size-sm {
    width: 32px;
    height: 32px;
    font-size: 12px;
}

.avatar-placeholder.size-md,
.avatar-placeholder:not(.size-xs):not(.size-sm):not(.size-lg):not(.size-xl) {
    width: 40px;
    height: 40px;
    font-size: 16px;
}

.avatar-placeholder.size-lg {
    width: 60px;
    height: 60px;
    font-size: 24px;
}

.avatar-placeholder.size-xl {
    width: 80px;
    height: 80px;
    font-size: 32px;
}

/* Profile Details */
.profile-details {
    flex: 1;
}