/* Шапка */
.header {
    display: flex;
    position: relative;
    /* justify-content: right; */
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    background-color: #0D0D0D;
    height: 60px;
    z-index: 999;
}
.header-title {
    font-size: 14px;
    font-weight: 600;
    color: #949494;
    padding-left: 20px;
}
.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Кнопка уведомлений */
.notification-button {
    width: 31px;
    height: 31px;
    border-radius: 50%;
    background-color: #1C1C1C;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
}
.notification-button:hover {
    background-color: #2F2F2F;
}
.notification-button img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

/* Кнопка закрытия */
.close-button {
    background: none;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1C1C1C;
    width: 40px;
    height: 40px;
    transition: background-color 0.3s;
    z-index: 2;
}
.close-button:hover {
    background-color: #2F2F2F;
}
.close-button img {
    width: 40%;
    height: 40%;
    object-fit: contain;
}

/* Профиль */
.user-avatar img {
    width: 25px;
    height: 25px;
    margin-top: 5px;
    border-radius: 50%;
    object-fit: cover;
    cursor: pointer;
    border: #1C1C1C 2px solid;
    transition: background-color 0.3s;
}
.user-avatar img:hover {
    border: #2F2F2F 2px solid;
}

button#menu-button {
    background: none;
    border: none;
    display: flex;
}