/* Global styles */
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* YASGUI container */
#yasgui {
  margin-top: 0px;
  height: calc(100vh - 60px);
}

/* Footer styles */
#footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #f5f5f5;
  padding: 8px 20px;
  border-top: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.footer-left {
  position: absolute;
  left: 20px;
  display: flex;
  align-items: center;
}

.footer-center {
  text-align: center;
}

#logo {
  height: 35px;
  width: auto;
  transition: opacity 0.2s;
}

#logo:hover {
  opacity: 0.8;
}

#footer a {
  color: #0066cc;
  text-decoration: none;
}

#footer a:hover {
  text-decoration: underline;
}
