@charset "utf-8";
/* CSS Document */

html, body{
    height: 100%;
	background-color:rgb(245, 243, 231)
}
.header {
	background-color:rgb(0, 76, 69);
	color:white
	
}
.footer {
	background-color:rgb(0, 76, 69);
	color:white
}
.no-datasets-message{
	text-align: center;
    padding: 10px;
    margin: 10px;
    font-size: x-large;
}

.background{
    background-color: #004c46;
    position: relative;
    height: fit-content;
	min-height: 100%;
}

.main-content{
    height: 100%;
    width: 100%;
    background-color: #004c46;
}

.info-button{
    text-align: center;
    width: fit-content;
    height: fit-content;
    padding: 5px;
    border-radius: 10%;
    background-color: #98B8AD; 
    border: 2px solid black;
	position: absolute;
	top: -25px;
}

.info-button:hover{
    background-color: #CDDAD5;
}

.util-bar{
    position: relative;
    height: 70px;
    display: flex;
    background-color: #D5CB9F;
}

.util-message{
    width: fit-content;
    height: fit-content;
    margin: 10px;
    padding: 10px;
    font-size: 20px;
    text-decoration: underline;
}

.util-button{
    text-align: center;
    width: fit-content;
    height: fit-content;
    margin: 10px;
    padding: 10px;
    border-radius: 10%;
    background-color: #98B8AD; 
    border: 2px solid black;
}

.util-button:hover{
    background-color: #CDDAD5;
}

.util-button:active{
    background-color: #98B8AD;
}

.util-button:disabled{
    background-color: lightgray;
}


.dataset-container{
    position: absolute;
    background-color: #D5CB9F;
    width: 100%;
    height: 100%;
}

.loader {
    margin: auto;
    padding: 30px;
    background-color:  #004c46;
    border: 16px solid #CDDAD5;
    border-top: 16px solid #FFC72C;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    justify-content: center;
}
  
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
  
.curr-button{
    background-color:#98B8AD;
}

.page-button{
    border: none;
    display: inline-block;
    padding: 8px 16px;
    vertical-align: middle;
    overflow: hidden;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
}

.page-button:hover{
    background-color:#CDDAD5;
}

.image-box{
    text-align: center;
}

.text-box{
    width: 95%;
}

.button{
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    background-color: inherit;
    border: none;
    text-align: center;
    cursor: pointer;
}

.content{
    background-color: #00856A;
}

.pagination{
    width: 100%;
    position: absolute;
    z-index: 1;
    background-color: #D5CB9F;
}

.pagecount
{   position: absolute;
    display: block;
    width: 100%;
    z-index: 1;
    bottom: -60px;
    background-color: #D5CB9F;
}