﻿.popup {
    position: fixed;
    z-index: 1000;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    right: 70px;
}

/* Визуал кружок где по идеи должно быть лого */
.circle-button {
    width: 40px;
    height: 40px;
    border: 2px solid white;
    border-radius: 23px;
    justify-content: center;
    display: flex;
    transition: width 0.5s ease, height 0.5s ease;
    cursor: pointer;
    background-image: url("/IconUser/User.jpg");
    background-size: cover;
    background-position: center;
}

/* Н. Меню которое появится при нажатии на наш аккаунт */
.menu {
    display: none;
    position: fixed;
    top: 70px;
    z-index: 1000;
    padding: 10px;
    background-color: #272727;
    border: 1px solid white;
    color: white;
    border-radius: 6px;
    text-align: center;
}

.menu.show {
    display: block;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

.menu li {
    margin-bottom: 10px;
    cursor: pointer;
}

.menu a {
    color: white;
    text-decoration: none;
}
