#akabuy-notifications-page {
    max-width: 600px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.akabuy-notification {
    display: flex;
    align-items: flex-start;
    padding: 12px;
    border-bottom: 1px solid #eee;
    position: relative;
}

.akabuy-notification img.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 12px;
}

.akabuy-notification .content {
    flex: 1;
    cursor: pointer;
}

.akabuy-notification .username {
    font-weight: bold;
    display: inline-block;
    margin-bottom: 4px;
}

.akabuy-notification .message {
    display: block;
    color: #333;
}

.akabuy-notification .time {
    font-size: 12px;
    color: #999;
    position: absolute;
    top: 12px;
    right: 12px;
}

#akabuy-notifications-unread-count {
    background: red;
    color: white;
    padding: 2px 6px;
    border-radius: 12px;
    font-size: 12px;
}