.a-notification {
    transition-duration: 100ms;
    cursor: pointer;
    padding: 8px;
    padding-left: 16px;
    color: inherit;
    text-decoration: inherit;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    align-content: stretch;
    gap: 8px;
}

.a-notification-icon {
    font-size: 1.5em;
    background-color: #33ccff;
    border-radius: 50%;
    line-height: 32px;
    text-align: center;
    min-width: 32px;
    width: 32px;
    height: 32px;
}

.a-notification-info {
    min-width: 180px;
    flex-grow: 1;
}

.a-notification-read {
    min-width: 50px;
}

.a-notification:hover {
    background-color: #eeeeee;
    text-decoration: none;
}

.a-notifications {
    overflow-y: auto;
    height: 299px;
    padding-bottom: 8px;
}