@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

@import url("/Tournaments_v2/tournaments_v2.css");
@import url("/Things/Things.css");

@font-face {
    font-family: BrushScriptMT;
    src: url("/include/font/BrushScriptMT.ttf");
}

@font-face {
    font-family: RomanticBeach;
    src: url("/include/font/RomanticBeach.ttf");
}

:root {
    --tm-panel-padding: 0px;
    --tm-panel-border-radius: 14px;
    --tm-panel-internal-border-radius: calc(var(--tm-panel-border-radius) - var(--tm-panel-padding));
    --tm-panel-border-color: #343434;
    --tm-panel-border: 1px solid var(--tm-panel-border-color);
    --tm-panel-shadow: 0 0 10px -5px black;
    --tm-panel-min-height: 50px;
}

body {
    font-family: Helvetica, sans-serif !important;
    font-weight: normal !important;
    font-size: 12pt;
}

label {
    margin-top: 5px;
}

.modal-content {
    padding: 0;
    border-radius: 14px;
}
.modal-dialog{
    padding: 0;
}
.modal-body, .modal-footer{
    padding: 10px;
}
.modal-body .col-sm-12 { padding: 0; }

#subMenuBtn {
    position: absolute;
    bottom: 0px;
    right: 0px;
    height: 50px;
    width: 50px;
    background-color: white;
    color: #333;
    text-align: center;
    vertical-align: center;
    box-shadow: 0px 0px 10px gray;
    padding-top: 7px;
    border-top-left-radius: 5px;
}

.header {
    background-color: white;
    height: 100px;
    box-shadow: 0px 0px 10px gray;
    z-index: 20;
    height: 100px;
}

.navMenu {
    position: absolute;
    padding: 0px;
    padding-top: 10px;
    background-color: white;
    box-shadow: 0px 0px 10px gray;
    z-index: 10;
    height: calc(100% - 100px);

    display: grid;
    grid-template-rows: 25px auto;
    grid-template-columns: auto 25px;
    grid-template-areas:
            '. close'
            'btnGrp btnGrp';
}

.navMenu>.btnGroup {
    border-radius: 0px !important;
}

.contextMenu {
    position: absolute;
    z-index: 10;
    display: none;
    width: 200px;
    border-radius: 5px;
    background-color: white;
    box-shadow: 0px 0px 5px 0px gray;
    overflow: hidden;
}

.contextMenu ul {
    text-decoration: none;
    list-style: none;
    padding-left: 0px;
    margin: 0px;
}

.contextMenu span {
    text-decoration: none;
    color: #555;
    font-size: 12pt;
    font-weight: bold;
    height: 100%;
    vertical-align: middle;
}
.contextMenu li {
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
    height: 40px;
    cursor: pointer;
}

.contextMenu li[role='separator'] {
    height: 1px;
    padding: 0px;
    border-bottom: 1px solid #ccc;
}

.contextMenu li[role='separator']:hover {
    background-color: white;
}

.contextMenu li:hover {
    background-color: #eee;
}

.Hover-LightGray:hover {
    background-color: #eee !important;
    box-shadow: 0px 0px 5px #eee;
    font-wheight: bold;
}

.Selected-LightGray {
    background-color: #efefef !important;
    box-shadow: 0px 0px 5px #efefef;
    font-weight: bold;
}

.Hover-Dark:hover {
    background-color: #888;
    /*border: 2px solid #333;*/
    box-shadow: 0px 0px 10px #888;
    font-weight: bold;
    color: white;
}

.Hover-Dark:active {
    box-shadow: none;
}

.th-Dark {
    background-color: #333; 
    color: white;
}

.td-Disabled {
    color: #777;
    background-color: #ccc;
}

.btnGroup {
    padding: 0px;
    border-radius: 5px;
    overflow: hidden;
}

.btnGroup button {
    border: none;
    border-top: 1px solid #ccc;
    border-radius: 0px;
    width: 100%;
    box-shadow: none;
}

.no-padding {
    padding: 0px;
}

.tm-navbar {
    box-shadow: var(--tm-panel-shadow);
    padding: var(--tm-panel-padding);
    border: var(--tm-panel-border);
    border-radius: var(--tm-panel-border-radius);
    overflow: hidden;
}

.tm-navbar .navbar-collapse,
.tm-navbar .container-fluid { padding: 0; }

.tm-panel {
    min-height: var(--tm-panel-min-height);

    box-shadow: var(--tm-panel-shadow);
    padding: var(--tm-panel-padding);
    border: var(--tm-panel-border);
    border-radius: var(--tm-panel-border-radius);
    overflow: hidden;
}

.tm-actions {
    display: flex;
    gap: 5px;
    place-content: center end;
    place-items: center end;
}

.tm-icon {
    cursor: pointer;
    color: lightgrey;
    transition: color 150ms;
}
.tm-icon:hover { color: grey; }
.tm-icon-delete:hover { color: red; }
.tm-icon-info:hover { color: dodgerblue; }