@import url('/fonts/style.css');

:root{
  --font-family: 'Gotham Book';
  --font-family-bold: 'Gotham Bold';
  --font-family-medium: 'Gotham Medium';
}

body {
  font-family: var(--font-family-bold)!important;
}

body {
  margin: 0;
  background-color: rgb(16, 16, 16);
}

body.hub_theme {
    background-color: transparent!important;
}

#map {
  height: 100vh;
  width: 100vw;
}

.topbar {
  width: fit-content;
  min-width: 800px;
  position: fixed;
  padding: 10px;
  margin: 10px;
  border-radius: 10px;
  top: 0;
  left: 0;
  background-color: rgba(51, 51, 51, 0.60);
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  color: white;
  z-index: 10;
  box-shadow: rgba(41, 41, 41, 0.788) 5px 5px 10px;
}
.topbar img{
  width: 300px;
}

.header_option {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
}

.header_option select{
  background-color: transparent;
  border: none;
  color: white;
  font-size: 20px;
}

.header_option select option{
  background-color: #333333;
  padding: 0;
  margin: 0;
  font-family: var(--font-family)!important;
}

.header_option select option

.selected_player_details {
  display: grid;
  grid-template-columns: 60px auto;
  grid-template-rows: auto auto;
  column-gap: 15px;
}

.selected_player_avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  grid-row-start: 1;
  grid-row-end: 3;
}

.selected_player_name {
  margin: 0;
  font-size: 1.5em;
  color: white;
  text-decoration: none;
}

.selected_player_name_holder {

}

.selected_player_role {
  margin: 0;
}

.lower_left_user {
  position: fixed;
  bottom: 10px;
  left: 10px;
  background-color: rgba(51, 51, 51, 0.80);
  color: white;
  display: flex;
  flex-direction: column;
  z-index: 10;
  padding: 10px;
  width: 400px;
  border-radius: 10px;
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  color: white;
  z-index: 10;
  box-shadow: rgba(41, 41, 41, 0.788) 5px 5px 10px;
}

.lower_left_user h1 {
  margin: 5px;
  height: fit-content;
}

.deselect_player {
  background-color: #333;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 5px;
  margin: 5px;
  cursor: pointer;
}

.deselect_player i {
  color: white;
  transition: 0.2s;
}

.deselect_player:hover i {
  color: red;
}

.selected_player_header {
  display: flex;
  justify-content: space-between;
}

.selected_player_main {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.hidden {
  display: none;
}
