/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : 17 cze 2024, 23:00:53
    Author     : konta
*/
html,
body {
  height: 100%;
}
body.login-page{
    background-color: #0f1000;
}
body.login-page h1{
    color: #fff;
}
body.login-page p{
    color: #fff;
}
.form-signin {
  max-width: 330px;
  padding: 1rem;
}

.form-signin .form-floating:focus-within {
  z-index: 2;
}

.form-signin input[type="email"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.form-signin input[type="password"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

main.main{
    padding: 20px 0;
}
tr .actions{
    text-align: right;
}
.paginator{
    text-align: right;
}
.paginator .pagination{
    justify-content: flex-end;
}
.card{
    height: 100%;
}
.board-background{
    position: relative;
    width: fit-content;
    height: fit-content;
max-width: 100%;
margin: 20px auto 30px;
}
.board-background > img{
    max-width: 100%;
    max-height: 100%;
}
.board-background .board-grid{
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid rgb(158, 158, 158);
    top: 0;
    left: 0;
}

.board-background .board-grid  td{
        position: relative;
    border: 1px solid rgb(158, 158, 158);
}
.board-background .board-grid  td:not(:hover) i{
    display: none;
}
.board-background .board-grid  td:hover{
    background: rgb(155 155 155 / 60%);
    cursor: pointer;
    text-align: center;
    vertical-align: middle;
}
.board-background .board-grid  td:hover i{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #fff;
    font-size: 16px;
}
.board-background .board-grid  td .grid-cell-position {
    position: absolute;
    bottom: 0;
    right: 0;
    color: #000;
    background: #fff;
    font-size: 12px;
    padding: 2px 5px;
    opacity: 1;
}
.board-background .board-grid  td:not(:hover) .grid-cell-position {
    opacity: .7;
}
.board-background:not(.show-grid-addr) .board-grid  td:not(:hover) .grid-cell-position{
    display: none;
}
.show-on-select-value:not(.active){
    display: none;
}
.board-components .board-actions .board-action{
        display: flex;
    justify-content: space-around;
    position: absolute;
    background: rgba(255, 0, 255, .4);
    border: 1px solid #fff;
    align-items: center;
    font-size: 25px;
}
.board-background:not(:hover) .board-components .board-actions .board-action{
    display: none;
}
.form-group{
    margin-bottom: 20px;
}
.text-right{
    text-align: right;
}
.boards-tree-list {
    list-style: none;
}
.boards-tree-list ul{
    list-style: none;
}
.boards-tree-list li > .card{
    width: 330px;
}
.boards-tree-list ul li{
    position: relative;
    padding: 20px 0 0 40px;
    border-left: 2px solid #000;
    /* display: flex;
    flex-wrap: nowrap;
    align-items: flex-start; */
}
.boards-tree-list ul li .card{
    position: relative;
}
.boards-tree-list ul li .card::before{
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    width: 40px;
    height: 2px;
    background: #000;
}

span.character-attr-item{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 5px;
}
span.character-attr-mod {
    font-size: 16px;
    padding: 3px;
    border-bottom: 1px solid;
    display: block;
    font-weight: 600;
}
span.character-attr-val {
    font-size: 12px;
    padding: 2px;
    display: block;
    font-weight: 400;
}
input.select-character-spell {
    height: 15px;
    width: 15px;
    vertical-align: middle;
    display: inline-block;
    margin-right: 8px;
}