
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,400;0,700;0,900;1,400&family=Oswald:wght@300;400;700&&family=Teko:wght@600&display=swap');

html, body {
  margin: 0;
  padding: 0;
  height: 100vh;
  background: #f0f0f2;
  font-family: 'Merriweather', serif;
}

/* Sticky footer trick */

body{ 
  display: flex; 
  flex-direction: column; 
}

main {
  margin: 0;
  padding: 0;
}

main a, main a:visited {
  color: #0F3392;
}

.sys-font {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.callout-box {
  padding: 0.5em 1em;
  background-color: #F6F5F3;
  border-radius: 5px;
  border: 1px solid #D1D0CE;
  display: inline-block;
}

.callout-box p {
  margin: 0.5em 0;
}

.readable {
  margin: 0 auto;
  max-width: 625px;
  padding: 1em 2em;
}

.dual-column {
  display: flex;
  gap: 2em;
}

.dual-column .column-content {
  flex: 50%;
}

.column-content img {
  max-width: 100%;
  height: auto;
}

.justice {
  text-align: justify;
}

.selected-tab {
  background: #eee;
  color: black;
  padding: 0.25em 0.5em;
  border-radius: 0.5em;
}

.divider {
  margin: 2em auto;
  height: 2px;
  width: 50%;
  background: #222;
  max-width: 420px;
}

.action-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: #222;
  color: #eee !important;
  padding: 0.5em 1em;
  border-radius: 0.5em;
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: 600;
}

.action-button:hover {
  background-color: black;
}

.flashes {
  list-style: none;
  margin: 1em 0 0 0;
  padding: 0;
  display: inline-block;
  padding-bottom: 1em; 
}

.flashes li {
  background: #92200F;
  padding: 0.4em 0.8em;
  border-radius: 5px;
  color: white;
  font-size: 1em;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.card-container {
  border: 0;
  width: 90%;
  margin: 0 auto;
  padding: 1em;
  display: block;
  background-color: #fdfdff;
  border-radius: 0.5em;
  box-shadow: 2px 3px 7px 2px rgba(0,0,0,0.02);
}

footer {
  margin-top: auto;
  padding: 1em 0;
  color: #ccc;
  text-align: center;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
}

#footer-flag {
  height: 0.875em;
  padding-left: 0.5em;
}

#mobile-label {
  color: #ccc;
  display: none;
  align-self: center;
  font-size: 1.3em;
  font-family: 'Oswald', sans-serif;
}

#mobile-label a {
  color: #ccc;
  text-decoration: none;
}

#overlay-menu-open {
  display: none;
  color: #ccc;
  right: 1em;
  align-self: center;
  position: absolute;
}

#overlay-menu-open span {
  display: block;
  width: 28px;
  height: 3px;
  margin-bottom: 5px;
  position: relative;
  background: #ccc;
  border-radius: 0.5em;
}

#overlay-menu-nav {
  height: 0;
  width: 100%;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0, 0.95);
  overflow-x: hidden;
  transition: 0.3s;
}

#overlay-menu-options {  
  position: relative;
  top: 2.5em;
  width: 100%;
  text-align: center;
  margin-top: 2em;
  display: flex;
  flex-direction: column;
}

#overlay-menu-nav a {
  margin: 0.5em;
  padding: 0.5em;
  color: white;
  align-self: center;
  text-decoration: none;
  font-size: 1.5em;
}

#navigation-container {
  margin: 0;
  height: 2em;
  padding: 1em;
  display: flex;
  flex-direction: row;
  justify-content: start;
  background-color: black;
}

#main-nav a {
  text-decoration: inherit;
  color: inherit;
}

ul#main-nav {
  margin: 0;
  padding: 0;
  list-style: none;
  align-self: center;
}

#main-nav li {
  color: #ccc;
  font-weight: bold;
  font-size: 0.95rem;
  display: inline-block;
}

#main-nav li:not(:last-child) { 
  margin-right: 1em;
}

#bottom-gutter {
  height: 8em;
}

.status-pill {
  text-transform: uppercase;
  font-family: monospace;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: bold;
}
.status-pill.pending {
  background: #f2e66b;
  color: #000;
}
.status-pill.approved {
  background: #aaf26b;
  color: #000;
}
.status-pill.denied {
  background: #f26b6b;
  color: #000;
}

@media screen and (max-width: 600px) {
  .readable {
    padding: 0.5em 1em;
  }
  .dual-column {
    display: inline-block;
  }
  .column-content img {
    margin: 2em auto;
    max-width: 75%;
  }
  #made-by {
    text-align: left;
  }
  ul#main-nav {
    display: none;
  }
  #navigation-container {
    padding: 1.5em;
  }
  #mobile-label {
    display: block;
  }
  #overlay-menu-open {
    display: block;
  }
}