/* CSS RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

html {
    vertical-align: top;
    max-width: 800px;

}
/* GENERAL STYLES */
body {

    font-size: 1rem;
    font-family: Arial, Helvetica, sans-serif;
    min-height: 100vh;
    /*background-color: aliceblue;
    background-image: radial-gradient(whitesmoke, aliceblue);
        */
    background-color: white;
    /*background-image: radial-gradient(green, white);*/
    display: flex;
    flex-direction: column;
    color: darkblue;
}

header, nav, main, footer  {
    display: grid;
    place-content: center;
    grid-template-columns: 100%;
    text-align: center;
}

h1{
    background-color:gray;
    font-size:1.2rem;
    padding: 0.5rem;
}
h3 {
    font-size: 3rem;
    padding: 0.5rem;
    color:red;
}
a {
    color:white;
    font-weight:bolder;
    text-decoration:none;
}

main{
    flex-grow: 1;
    padding:1rem;
    text-align:left;
}

header {
    top: 0;
    margin:.2rem;

}

footer {
    background-color: gray;
    bottom: 0;
    padding: 0.5rem;
    font-size: .7rem;
}
nav {
    background-color: white;
    color: black;
    padding: 0.5rem;
    
    border-bottom: 2px, solid, black;

}
.container {
    padding-left:2rem;
        top:0;
    font-size: 1rem;
    color: darkblue;
}
.paragraph-left{
    text-align:left;
}
.paragraph-center {
    text-align: center;
}
.return-link {
    font-size:1.5rem;
    color: black;
    padding: 0.5rem;
    border-bottom: 2px, solid, black;
}
table{
    margin:0;
}
header, footer {
    position:sticky;
    background-color: #1E293B;
    color:whitesmoke;
}
.grid-container {
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(auto-fit, minmax(330px, 330px));
    gap: 10px;
    max-width: 100%;
}

.box {
    justify-content: center;
    padding: 5px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    border-color: lightgray;
    border-style: solid;
    border-width: .5px;
    border-radius: 8px;
}


.login-box {
    padding-top:25px;
    padding-left:75px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    border-color: lightgray;
    border-style: solid;
    border-width: .5px;
    border-radius: 8px;
}
.listbox {
    font-size: 1em;
    margin-bottom: 5px;
    background-color: whitesmoke;
}
.btn_add_delete {
    width: 65px;
    height:25px;
    margin-right: 3px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.button_160 {
    width: 150px;
    height: 25px;
    margin-right: 3px;
    margin-top: 5px;
    margin-bottom: 5px;
}
.timesheet_text {
    font-size: .7rem;

    font-family: Arial, Helvetica, sans-serif;
    color: darkblue;
    width: 320px;
    background-color:#DFDFFF;
}
.lbltimesheet_text {
    font-size: 1rem;
    font-family: Arial, Helvetica, sans-serif;
    color: darkblue;
    width: 320px;
    height:420px;
}
.nav_text {
    font-size: 1rem;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    width: 200px;
    background: blue;
    padding-left: 20px;
    padding-right: 20px;
    border-color: blue;
    border-style: solid;
    border-radius: 3px;
}
.nav_class {
    justify-content: center;
}

.text_values {
    font-size: 1rem;
    font-family: Arial, Helvetica, sans-serif;
    color: darkblue;
    width: 310px;
    margin-bottom: 5px;
}
.text_names {
    font-size: 1rem;
    font-family: Arial, Helvetica, sans-serif;
    color: darkblue;
    background-color: whitesmoke;
    width: 160px;
    height: 22px;
    margin-bottom: 5px;
    border: solid 1px;
}
.text_filter {
    font-size: 1rem;
    font-family: Arial, Helvetica, sans-serif;
    color: darkblue;
    background-color: white;
    width: 120px;
    height:22px;
    margin-bottom: 5px;
    border: solid 1px;
}

.text_edit_names {
    font-size: 1rem;
    font-family: Arial, Helvetica, sans-serif;
    color: darkblue;
    background-color: white;
    width: 160px;
    margin-bottom: 5px;
    border: solid 1px;
}

.event_status{
    margin-bottom: 5px;
    text-align:center;
}

/* SMALL */
@media screen and (min-width: 576px) {
    body {
        /*background-color: aliceblue;
        background-image: radial-gradient(whitesmoke, aliceblue);*/
    }
    nav {
        /* display: none;    Keep the nav */
    }
}
/* MEDIUM */
@media screen and (min-width: 768px) {
    body {
        /* background-color: aliceblue;
        background-image: radial-gradient(whitesmoke, aliceblue);*/
    }
}
/* LARGE */
@media screen and (min-width: 992px) {
    body {
        /*background-color: aliceblue;
        background-image: radial-gradient(whitesmoke, aliceblue);
        */
    }
}
/* XL */
@media screen and (min-width: 1200px) {
    body {
        /*background-color: aliceblue;
        background-image: radial-gradient(whitesmoke, aliceblue);*/
    }
}
/* MOBILE DEVICE LANDSCAPE */
@media screen and (max-height: 425px) and (min-aspect-ratio: 7/4) {
    body {
       /* background-color: aliceblue;
        background-image: radial-gradient(whitesmoke, aliceblue);*/
    }
    h1, h2 {
        font-size: 1.3rem;
    }

}
.table_settings{
    
    width:300px;
}
.table_2row_settings {
    background-color: blue;
    color:white;
    margin-left: 20px;
    margin-right:20px;
    border: 2px, solid, blue;
    border-radius: 5px;
    width: 120px;
    height: 20px;
    text-align: center;
}
.listbox{
    color:darkblue;
    font-size:1rem;
}

.container {
    padding-left: 2rem;
    top: 0;
    font-size: 1rem;
    color: darkblue;
}

.paragraph-left {
    text-align: left;
    padding-top: 5px;
    padding-bottom: 5px;
}

.paragraph-center {
    text-align: center;
}

#myBtn {
    /* display: none;  Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 0px; /* Place the button at the bottom of the page */
    right: 0px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: red; /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 4px; /* Some padding */
    border-radius: 3px; /* Rounded corners */
    font-size: 18px; /* Increase font size */
}

    #myBtn:hover {
        background-color: #555; /* Add a dark-grey background on hover */
    }