* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

header {
  background-color: #1079BF;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  border-bottom: 1px solid #EFEFEF;
}

.login button a {
  text-decoration: none;
  color: white;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  object-fit: contain;
  height: 50px;
  margin-right: 20px;
  max-width: 225px;
  max-height: 56px;
}

.logo h1 {
  color: white;
  font-family: 'Poppins', sans-serif;
  margin: 0px;
  font-size: 12px;
  text-transform: uppercase;

  border-style: solid;
  border-width: 0px 0px 0px 1px;
  padding: 5px 0px 5px 20px;

}

section {
  max-width: 1280px;
  margin: 0 auto;
}

#tableinfo {
  font-family: 'Poppins', sans-serif;
  border-collapse: collapse;
  width: 100%;
}

#tableinfo td,
#tableinfo th {
  padding: 8px;
}

#tableinfo tr:nth-child(even) {
  background-color: #f2f2f2;
}

#tableinfo tr:hover {
  background-color: #ddd;
}

#tableinfo th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #DB3826;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
}

#tbody td {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
}

/* mobile view */

@media screen and (max-width:640px) {
  header {
    justify-content: space-between;
    padding: 10px;
  }

  .logo {
    flex-direction: column;
    text-align: center;
  }

  .logo img {
    margin-right: 0;
    margin-bottom: 10px;
  }


  table,
  thead,
  tbody,
  th,
  td,
  tr {
    display: block;
  }

  thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  tr {
    margin-bottom: 20px;
    border: 1px solid #ddd;
  }

  td {
    font-size: 7px !important;
    border: none !important;
    position: relative;
    padding-left: 50% !important;
  }

  td:before {
    position: absolute;
    left: 6px;
    content: attr(data-label);
    font-weight: bold;
  }
}