* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, system-ui, sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
}

svg, img{
  display: block;
}

.app {
  display: flex;
  height: 100vh;
  overflow: hidden;
}

.content {
  flex: 1;
  padding: 20px;
  overflow-y: auto;

  display:flex;
  flex-direction:column;
  min-height:100vh;
}

.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

#page-content {
  display: block;
  flex:1;
}

/* =======================================================
   Footer
======================================================= */
.site-footer{
    margin-top: 20px;
    padding-top:20px;
    border-top:1px solid rgba(0,0,0,.08);
    color:#6b7280;
    font-size:.9rem;
    line-height:1.5;
    text-align:center;
}

.site-footer p{
    max-width:900px;
    margin:0 auto;
}
