﻿/* ANYTHING DIRECTLY RELATED TO THE ACCOUNT DROPDOWN */
.header-account-dropdown {
    width: 195px;
    height: 50px;
}

.character-tile {
}

    .character-tile .avatar-icon {
        position: relative;
        padding-top: 5px;
        padding-left: 8px;
        margin: 0px;
    }

    .character-tile .faction-icon {
        position: absolute;
        top: 2px;
        left: 4px;
    }

    .character-tile .NotificationsCounter {
        position: absolute;
        top: 3px;
        right: 30px;
        width: 20px;
        height: 20px;
        background-color: red;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: bold;
    }

.character-tile-clickable {
    cursor: pointer;
    display: block;
}

    .character-tile-clickable:hover {
        background-color: var(--phoenix-secondary);
    }

    .character-tile-clickable:hover .character-tile {
        background-color: var(--phoenix-secondary);
    }

.character-tile-list-item {
    display: block;
}

    .character-tile-list-item:hover {
        background-color: var(--phoenix-secondary);
        cursor: pointer;
    }

.header-account-dropdown-button {
}

.header-account-dropdown-menu {
    width: 195px;
    right: 1000px;
}
