.card-avatar {
    overflow: hidden;
    flex-shrink: 0;
}
.card-avatar .avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.card-avatar .avatar-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

/* ----- Çat: form aşağıda sabit, mənim mesajlarım sağda ----- */
/* Səhifə çat söhbəti göstərəndə konteyner tam hündürlük, form aşağıda qalsın */
.main-container:has(.chat-container) {
    padding-bottom: 0;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}
.main-container:has(.chat-container) .chat-container {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
}
.chat-container .chat-body {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
}
.chat-container .chat-form {
    flex-shrink: 0;
}

/* Mesaj siyahısı flex olmalıdır ki, .chat-message-right sağa düşsün */
.chat-messages-list {
    display: flex;
    flex-direction: column;
}
.chat-message-right {
    align-self: flex-end;
    max-width: 85%;
}
.chat-message-left {
    align-self: flex-start;
    max-width: 85%;
}

/* ----- Şifrə sahəsi: Safari Strong Password blokunu aradan qaldırır ----- */
.pw-mask {
    -webkit-text-security: disc;
    text-security: disc;
}
.pw-mask.pw-visible {
    -webkit-text-security: none;
    text-security: none;
}
