﻿WardenDisplay {
  position: absolute;
  
  display: flex;
  
  top: 100%;
  right: 0;
  left: 0;
  align-content: center;
  align-items: center;
  justify-content: center;
  
  backdrop-filter: blur(6px);
  background-color: rgba(45, 42, 42, 0.6);
  
  margin-top: 5px;

  padding: 10px 10px;
  border-radius: 8px;
  
  .text {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
  }
  
  .avatar {
    height: 32px;
    width: 32px;
    border-radius: 16px;
    overflow: hidden;
    background-size: cover;
    margin-right: 10px;
  }
}
