﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

/* Provide sufficient contrast against white background */
a {
  color: #0366d6;
}

.btn-primary {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.border-top {
  border-top: 1px solid #e5e5e5;
}
.border-bottom {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
  font-size: 1rem;
  line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
}

body {
    /* Margin bottom by footer heigh
  margin-bottom: 60px;t */
    
}
.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px; /* Vertically center the text there */
}

/*------------------------------------------------------------*/

:root {
    --color-cream: #f8f8e0;
}

.nameLabel {
    font-size: 32px;
    font-weight: bold;
}

img.rotateimg90 {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

img.rotateimg270 {
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    transform: rotate(270deg);
}

img.scaleSmall {
    /*-webkit-transform: scale(0.5, 0.5);
    -moz-transform: scale(0.5, 0.5);
    -ms-transform: scale(0.5, 0.5);
    -o-transform: scale(0.5, 0.5);
    transform: scale(0.5, 0.5);*/
    width: 50px;
}

img.lft:hover {
    /*position: relative;
    top: -15px;
    margin-top: -15px;*/
}

img.circularButton, img.circularSmallButton, img.circularTinyButton {
    max-width: 60px;
    cursor: pointer;
}

img.circularButton:hover, img.circularSmallButton:hover, img.circularTinyButton:hover {
    filter: brightness(120%);
}

img.circularSmallButton {
    max-width: 40px;
}

img.circularTinyButton {
    max-width: 20px;
}

div.playerMsgDiv {
    position: absolute;
    /*top: 0px;*/
    z-index: 1000;
    left: 20%
}

div.playerMsgDiv .box {
    background-color: mintcream;
    border-radius: 10px;
    border-style: solid;
    padding: 2px;
    font-size: 24px;
    width: fit-content;
    text-align: left;
}

.popupMenu, .popupMenuLeft {
    position: relative;
    cursor: pointer;
}

.popupMenu > div:not(:first-child) {
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 1100;
    display: none;
    border-radius: 5px;
    background-color: black;
    padding: 3px;
    width: auto;
}

.popupMenuLeft > div:not(:first-child) {
    right: 30px;
}

/*.popupMenu:hover > div:not(:first-child) {
    display: initial;
}*/

.popupMenuItem {
    color: var(--color-cream);
    font-weight: 700;
    cursor: pointer;
}

.popupMenuItem:hover {
    background-color: #313131;
}

div.popup {
    background-color: darkgray;
    visibility: hidden;
    position: fixed;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;

    padding: 10px;
    border-radius: 10px;
}

.rules col, .rules select {
    width: 200px;
}

div.panel {
    background-color: white;
    padding: 10px;
    border-radius: 10px;

    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 100;
}

/*.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

/*.tooltip .tooltiptext {
    /*visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    /* Position the tooltip */
    /*position: absolute;
    z-index: 1;
    bottom: 100%;
    left: 50%;
    margin-left: -60px;
}

.tooltip:hover .tooltiptext {
    /*visibility: visible;
}*/

