.preview-avatar-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.preview-avatar-container .image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #eee;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.preview-avatar-container .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

/* Эффект при наведении */
.preview-avatar-container .image:hover img {
    transform: scale(1.05);
}

/* Стиль для контейнера когда нет изображения */
.preview-avatar-container:not(:has(.image)) {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: #f5f5f5;
    border: 2px dashed #ccc;
    margin: 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #999;
    font-size: 14px;
}