﻿.mytable-border-right {
    border-right: solid;
    border-width: 0.5px;
}

.loader {
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
    margin-bottom: auto;
    border: 0px solid #e3e3e3;
    border-radius: 50%;
    border-top: dotted blue 10px;
    border-bottom: dotted blue 5px;
    height: 75px;
    width: 75px;
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.absoluteLayoutDIV {
    position: absolute;
    z-index: 1;
    height: 50vh;
    width: 100%;
}


.tableDIV {
    max-height: 95vh;
    /*min-width: 68vw;*/
    /*width: 100%;*/
    max-width: 85vw;
    overflow: auto;
    padding: 0px;
    margin: 0px;

    /*border: 1px solid green;*/
}



.tableDIV table {
     margin:0px;
    /*border: 1px solid grey;*/
    white-space:nowrap; 
 }

.tableDIV table th,td{
    padding:5px;
    
}

.tableDIV .searchKey{
  width:auto;
  display:block;
  border:none;
  border-radius:5px;
  font: var(--heading2);
  padding:5px;
}

.tableDIV thead{
        position: sticky;
        top: -1px;
        /* border-bottom: 1px solid black;*/
        box-shadow: 0px 0px 15px grey; 
        background-color: #CFE2FF;
    }

.tableDIV thead th{
    font:var(--heading2);
    font-weight:bold;
       
    }

.tableDIV tbody tr:nth-child(even) {
    background-color: #EFEFEF;
}

.tableDIV table tr{
    /*height:50px;*/
    
}

.tableDIV tbody tr:hover {
    background-color: #8BB9FF;
    color:white;
    font-weight:bold;
    transition: 0.15s all;
}

.tableDIV .freezeRow {
    position: sticky;
    top: -1px;
    /*font-size: 1.5vw;*/

    border-bottom: 1px solid black;
    box-shadow: 0px 0px 35px;
}

.addBTN {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
    color: white;
    font: var(--heading2);
    background-image: linear-gradient(180deg, rgba(23,110,236,1) 0%, rgba(0,255,171,1) 100%); /*linear-gradient(#0063FB, #52C9FA);*/
    box-shadow: 1px 1px 3px black;
}

.addBTN:hover {
    background-image: linear-gradient(#04982E, #A4F976);
       
}

.addBTN:active {
    box-shadow: 0px 0px 2px black;
    transform:translate(1px, 2px);
}


.cancelBTN {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
    color: #FF3D3D;
    font: var(--heading2);
    background-image: linear-gradient(180deg, rgba(255,178,83,1) 0%, rgba(255,254,164,1) 100%);
    /*linear-gradient(#FFEA00, #FFED51);*/
    box-shadow: 1px 1px 3px black;
}

.cancelBTN:hover {
    background-image: linear-gradient(#FF4040, #FFABAB);
    color:white;
}

.cancelBTN:active {
    box-shadow: 0px 0px 2px black;
    transform: translate(1px, 2px);
}

.textAccent{
    color:var(--accentColor);
}

.bgAccent {
    background-color: var(--accentColor);
}

.masterEntryCard {
    height: 95vh;
    /*border: 1px solid black;*/
    /*box-shadow: 0px 0px 5px grey;*/
    padding: 0px;
    width:20%;
    margin: 0px 5px 0px 5px;
    background-color: #E8F1FF;
    /*background-color: rebeccapurple;*/
}

.masterEntryCard .masterEntryCardHeader {
    position: sticky;
    top: 0px;
    text-align: center;
    /* border-bottom: 1px solid black;*/
    box-shadow: 0px 1px 5px grey;
    background-color: #CFE2FF;
    font: var(--heading1);
    font-weight: bold;
    margin:0px 0px 0px 0px;
    padding:5px;
    /*  box-shadow:0px 2px 5px grey;*/
            
}
.masterEntryCard .masterEntryCardBody {
    margin: 5px 0px 5px 0px;
           
    padding:10px 5px 10px 5px;
    height: 91.5%;
    overflow: auto;

}

.masterEntryCard .masterEntryCardFooter{
    position:relative;
    bottom:10px;
           
    margin:0px 0px 0px 0px;
    padding: 0px 10px 0px 10px;
             
}


@media (max-width: 641px) {

    .masterEntryCard{
        width:90%;
        height:fit-content;
        margin:auto;
    }

    .tableDIV{
        height:fit-content;
        max-height:300px;
        width:90%;
        margin:auto;
        margin-top:20px;
        box-shadow:none;
    }
}

input {
    box-shadow: 2px 2px 5px #8BB9FF;
}


.mytable2 {
    border: 1px white solid;
    border-radius: 0px 0px 10px 10px;
    box-shadow: 5px 5px 10px grey;
    padding: 0px 10px 20px 10px;
}


