/* ********************************************
* Copyright (C) 2023 Subhrajit Bhattacharya.  *
* This program is free software: you can      *
* redistribute it and/or modify it under the  *
* terms of the GNU General Public License as  *
* published by the Free Software Foundation,  *
* either version 3 of the License, or (at     *
* your option) any later version.             *
* Contact:                                    *
* subhrajit@gmail.com , http://subhrajit.net/ *
*                                             *
******************************************** */

body { background-color: white; font-family: sans-serif; font-size: 11pt; text-align: justify; }
body::backdrop { background-color: rgba(255,255,255,0); }

a { text-decoration:none; cursor:pointer; color:#444488; }

select {
    /*appearance: none;*/
    outline: 0;
    background: #eee;
    height: 110%;
    color: black;
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 1.01em;
}
input:disabled {
    appearance: none;
    outline: 0;
    background: #eee;
    border: 1px solid #ccc;
    /*width: 15em;
    height: 110%;
    color: black;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 1.01em;*/
}
input {
    border: 1px solid #ccc;
    /*appearance: none;
    appearance: none;
    outline: 0;
    background: #fff;
    width: 15em;
    height: 110%;
    color: black;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 1.01em;*/
}

.dropdown-table tr {
    
}
.dropdown-table td {
    border: solid 1px #fff;
    background-color: #f0f0ff; 
    padding: 5px;
    padding-bottom: 0.5em;
    vertical-align: top;
}
.selectioninfo {
    font-size: 0.9em;
    color: #888;
    /*height: 2em;*/
}

.alignright { 
    margin-right: 0;
    margin-left: auto;
    float: right;
    /*display: inline-block;
    float: right;*/
}
.alignleft { 
    margin-left: 0;
    margin-right: auto;
    display: inline-block;
    /*float: left;*/
}
.controlblock {
    display: inline-block;
    margin:5px;
    margin-top: 0px;
    vertical-align: top;
    padding: 5px;
    width: 22em;
}

.controlblock div {
    margin: 5px;
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 6em;
  font-size: 0.8em;
  background-color: white;
  color: #666;
  text-align: center;
  border: solid 1px #888;
  border-radius: 6px;
  padding: 2px;

  /* Position the tooltip */
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -3em;
  z-index: 1;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #888 transparent transparent transparent;
}

body:fullscreen {
  overflow: scroll !important;
}
body:-ms-fullscreen {
  overflow: scroll !important;
}
body:-webkit-full-screen {
  overflow: scroll !important;
}
body:-moz-full-screen {
  overflow: scroll !important;
}

