﻿@font-face {
    font-family: 'Open Sans';
    src: url('fonts/Open_Sans/static/OpenSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

body{
    background-color: white;
    font-family:'Open Sans', sans-serif;

}

h1{
    color:#005E9D;
}

h2{
    color:#005E9D;
}

.header
{
    margin-bottom: 30px;
}

.header_left {
    text-align: left;
}

.button
{
    background-color: #005E9D;
    color:white;
    border-radius: 0px;
    border-color: #005E9D;
    font-size: 20px;
    width:90%;
}

.input
{
    background-color: #FFFFFF;
    color:black;
    border-radius: 5px;
    border-color: #005E9D;
    width:90%;
}

.input2
{
    background-color: #FFFFFF;
    color:white;
    border-radius: 0px;
    border-color: #005E9D;
    width:100%;
}

table{
    height: 100%;
    margin:0 auto;

}

th{
    background-color: #005E9D;
    color:white;
    height:50px;
    width: 100%;
}

.footer{
    text-align: center;
    font-size:12pt;
}
loginBox {
    float: left;
    font-size: 16pt;
    width: 50%;
    background: #FFFFFF;
}

toolsBox {
    float: left;
    width: 50%;
    background: #FFFFFF;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.grid-item {
    width: 100%;
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.grid-item .image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.grid-item img {
    object-position: center;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

img2 {
    width: 100%;
    height: auto;
}

.leftText {
    text-align: left;
}

.rightText {
    text-align: right;
}

.grid-item .tooltiptext {
    visibility: hidden;
    background-color: #005E9D;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 0px;
    position: absolute;
    z-index: 1;
    bottom: 0%; /* Position the tooltip above the text */
    left: 0%;
    margin-left: 3px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 9pt;
    word-wrap: break-word;
    max-width: 100%;
}

.grid-item:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

container {
    width: 100%;
    overflow: auto;
}

.desc {
    padding-right: 20px;
}