/* Размеры эмодзи на экране приветствия */
.emoji-gif {
    width: 4.0rem;
    height: 4.0rem;
    vertical-align: middle;
}


/* Цвета заливки для транзакций */
.fill-add {
    background-color: #e6fadd;
}

.fill-subtract {
    background-color: #faf2f2;
}
/* */


/* Цвета заливки для приглашений и кодов доступа */
.fill-expired {
    background-color: #faf2f2;
}

.fill-used {
    background-color: #dcdcdc;
}
/* */


/* Ссылки-действия в виде эмодзи */
.link-emoji {
    font-size: 15px;
    text-decoration: none;
}

.link-emoji:hover {
    background-color: #afafaf;
    transform: scale(1.15);
}
/* */


/* Круглая рамка для контейнера аватара */
.circle {
    width: 100px;
    height: 100px;
    background-color: white;
    border-radius: 50%;
    border: 4px solid black;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* Размеры аватара */
.circle-avatar {
    width: 50px;
    height: 50px;
}


/* Размеры блока с информацией профиля */
.profile-info {
    width: 70%;
}


/* Стиль текста с информацией о последнем визите */
.last-online {
    color: gray;
}


/* Размеры иконок социальных сетей */
.social-icon {
    height: 20px;
    width: 20px;
}


/* Размеры иконки подтверждения */
.verified-icon {
    width: 30px;
    height: 30px;
}

/* Адаптивные изображения */
.img-responsive {
    max-width: 50%;
    height: auto;
}

@media (max-width: 768px) {
    .img-responsive {
        max-width: 100%;
    }
}
/* */


/* Плавающая кнопка действия (FAB) */
.fab-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background-color: #0d6efd;
    color: white;
    font-size: 28px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000; /* Поверх других элементов */
}

@media (max-width: 768px) {
    .fab-btn {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

.fab-btn:hover {
    background-color: #0056b3;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    color: white;
}
/* */

/* Изображения на странице поиска */
.search-result-img {
    max-width: 50%;
    height: auto;
    pointer-events: auto;
    -webkit-user-drag: none;
}