@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    background-color: #fff;
    color: #1e1e1e;
}

#top-bar{
    padding: 5px;
    margin: 0px;
    background-color: #008CFF;
    color: #f0f0f0;
    width: 100%;
    box-shadow: 0px 1px 0px 0px #000;
    clear: both;
    margin-bottom: 15px;
    height: 80px;
}

#div-logo{
    float: left;
    width: 60px;
    margin: 0px;
    padding: 0px;
    
}

#div-r{
    float: right;
    width: 300px;
    height: 60px;

    display: flex;
    justify-content: right; /* Optional: To horizontally center the text */
    align-items: center;    
}

#loading {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-align: center;
    opacity: 0.8;
    background-color: #fff;
    z-index: 99;

    display: flex;
    justify-content: center;
    align-items: center;

    display: none;
  }
  
  #loading-image {
    z-index: 100;
  }