/* General Styles */
body {
  margin: 0;
  font-family: Helvetica, Arial, sans-serif;
}

/* Table */
table {
  border-collapse: collapse;
  width: 100%;
}

td {
  line-height: 2rem;
  padding: 15px;
}

tr {
  height: 4rem;
  border-top: 1px solid grey;
}

tr:first-child {
  height: 4rem;
  border-top: 0px;
}

/* Logo */
.logo {
  height: 60px;
  padding: 10px;

  img {
    height: 100%;
    object-fit: contain;
  }
}

@media (max-width: 480px) {
  .logo {
    width: 100%;
  }

  .header-wrapper {
    flex-direction: column;
  }

  .header-buttons {
    width: 100%;
    display: flex;
    align-items: end;
    justify-content: flex-end;
  }
}

/* Default Tags */
.button {
  padding: 10px 30px;
  font-size: 16px;
  background-color: #ff4b4b;
  border: none;
  cursor: pointer;
  text-decoration: none;
  border-radius: 15px;
  min-width: 100px;
  width: fit-content;
  margin: 0 auto;
  display: block;
}

a.disabled {
  pointer-events: none;
  opacity: 0.8;
  cursor: not-allowed;
}

/* Header */
#header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 15px 0px 15px;
  background-color: white;
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav {
  display: flex;
  margin: 10px;
  padding-left: 15px;
  padding-right: 15px;
  align-items: center;
}

.nav .menu {
  width: 40px;
}

/* Footer */
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px;
  padding: 20px;
  border-radius: 22px;
  background-color: #5A5A5A;
  box-shadow: 0px 0px 20px rgb(0 0 0 / 50%);
  color: white;
}

.bottom-spaced {
  margin: 15px 15px 100px 15px;
}

.footer-content-left>p {
  margin-left: 15px;
}

.footer-bottom {
  font-size: 14px;
  color: #777;
}

.footer-content-right {
  padding: 10px;
}

.footer-content-right hr {
  margin: 20px 0;
  opacity: 0.5;
}

.footer-content-right a {
  margin: 20px;
  text-decoration: none;
  color: #EBEBEB;
  font-weight: 300;
}

.docs-content {
  width: calc(100% - 30px);
  max-width: 1000px;
  margin: 0 auto;
  padding: 15px;
}

.sticky-bottom-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: white;
  padding: 10px;
  box-shadow: 0px -5px 10px rgb(0 0 0 / 10%);
  /* make this center */
  display: flex;
  justify-content: center;
  /* hide this content if scroll reached to bottom */
}

@media (max-width: 600px) {
  .footer-content-right hr {
    display: none;
  }

  .footer-content-right div {
    display: block;
  }

  .footer-content-right a {
    display: block;
    margin: 10px;
  }
}

.download-buttons {
  display: flex;

  img {
    height: 60px;
    object-fit: contain;
    margin: 10px;
  }

  .small {
    height: 40px;
    object-fit: contain;
    margin: 5px;
  }

  .middle {
    height: 50px;
    object-fit: contain;
    margin: 5px;
  }
}