
html {
    height: 100%;
    margin:0;
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    overflow: hidden;
}
body{
    height: 100%;
    margin:0;

    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;

    background: url('image/5073414.jpg');
    background-attachment: fixed;
    background-size:cover;
}

input, select {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.page_title {
    text-align: center;
    color:white;
    margin: 5px;
}
.toolbar {
    display: flex;
    margin: 5px;
}
.btn {
    border-radius: 5px;
    padding: 5px;
    margin-left:5px;
    background-color: rgba(255, 255, 255, 0.5);
    color:white;
}
.btn:hover,  .btn.active{
    cursor: pointer;
    background-color:rgba(255, 255, 255, 0.7);
}

/*REALM*/
[nct-role="realms"] {
    display: flex;
}
[nct-init="realm_item"] {
    border-radius: 5px;
    padding: 5px;
    margin-left:5px;
    background-color: rgba(255, 255, 255, 0.5);
    color:white;
}
[nct-init="realm_item"]:hover,  [nct-init="realm_item"].active{
    cursor: pointer;
    background-color:rgba(255, 255, 255, 0.7);
}
[nct-role="leaderboards"] {
    height: 400px;
    width: 98%;
    border: 1px solid black;
    background-color: rgba(24, 23, 23, 0.424);
    border-radius: 5px;
    margin-top:15px;
    margin-left:1%;
    margin-right:1%;
    display: flex;
}
[nct-role="players"] {
    height: 300px;
    width: 98%;
    border: 1px solid black;
    background-color: rgba(24, 23, 23, 0.424);
    border-radius: 5px;
    margin-top:15px;
    margin-left:1%;
    margin-right:1%;
}
/*LEADERBOARD*/
[nct-init="leaderboard_item"]
{
    width:250px;
    border:1x solid rgb(234, 125, 24);
    background-color: rgba(234, 126, 24, 0.554);
    border-radius: 5px;
    margin:5px;
    padding:5px;
    display: flex;
    flex-direction: column;
    justify-content:stretch;
}
[nct-init="leaderboard_item"] [nct-role="records"]
{
    overflow-y:auto;
    flex-grow: 1;
}
[nct-init="leaderboard_item"] [nct-role="records"] > div 
{
    height: 20px;
    margin:2px;
    border: 1px solid rgb(214, 198, 172);
    border-radius: 5px;
    padding:5px;
}
[nct-init="record_item"]{
    display: flex;
    justify-content: stretch;
}
[nct-init="record_item"]>div{
    margin-left: 2px;
}
[nct-role="recordIndex"]{
    width: 30px;
}
[nct-role="recordPlayer"]{
    text-align: left;
    flex-grow: 2;
}
[nct-role="recordScore"]{
    text-align: right;
    flex-grow: 2;
}
/*PLAYER*/
[nct-init="player_item"]{
    width: 150px;
    height: fit-content;
    border:1x solid rgb(234, 125, 24);
    background-color: rgba(234, 126, 24, 0.554);
    border-radius: 5px;
    margin: 5px;
    float: left;
    padding:2px;
}
[nct-init="player_item"] [nct-role="title"]
{
    color:white;
}
[nct-init="player_item"] [nct-role="score"]
{
    color:white;
    width: 100%;
    height: 30px;

    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border-radius: 5px;
    border-style: solid;
    border-width: 1px;
    font-size: 0.9em;
    color: rgb(70, 69, 69);
    background-color: rgba(233, 140, 52, 0.554);
    
}