@font-face {
  font-family: 'Material Symbols Outlined';
  font-style: normal;
  font-weight: 400;
  src: url(/static/materials.woff2) format('woff2');
}

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

.pointer {
  cursor: pointer;
}

body {
  font-family: Tahoma;
  font-size: 13px;
  background-color: #F2EAD0;
  color: #333333;
  margin: 0;
  padding: 0;
}

nav {
  background-color: #CCCCCC;
  padding: 10px;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

nav li {
  display: inline-block;
  margin-right: 20px;
}

nav li a {
  color: #333333;
  text-decoration: none;
}

nav li span {
  color: #333333;
}

.content {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  background-color: #ECE2C6;
  border-radius: 5px;
}

.content h1 {
  font-size: 24px;
}

.content a {
  color: #336699;
  text-decoration: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: #ECE2C6;
  margin-bottom: 20px;
}

th,
td {
  padding: 10px;
  text-align: right;
  vertical-align: middle;
  border-bottom: 1px solid #CCCCCC;
}

th {
  background-color: #e3d8b8;
  font-weight: bold;
}

tr:hover {
  background-color: #F2EAD0;
}

.form input[type="text"],
.form input[type="number"],
.form input[type="password"],
.form select {
  width: 200px;
  padding: 5px;
  border: 0px solid #636363;
  border-bottom-width: 1px;
  background: transparent;
}

.form input[type="text"]:focus,
.form input[type="number"]:focus,
.form input[type="password"]:focus {
  outline: none;
}

.form button[type="submit"] {
  background-color: #D9C7A7;
  border: none;
  color: #333;
  cursor: pointer;
  font-size: inherit;
  padding: 8px 20px;
}

@media screen and (max-width: 767px) {
  .content {
    padding: 10px;
  }

  .form input[type="text"],
  .form input[type="number"],
  .form input[type="password"],
  .form select {
    width: 98%;
    padding: 5px;
    margin-bottom: 10px;
  }

  table {
    overflow-x: auto;
    display: block;
    width: 100%;
  }

  th, td {
    padding-right: 6px;
  }

  nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    margin: 0;
  }
  
  nav li {
    flex: 0 0 auto;
    margin: 15px;
    white-space: nowrap;
    overflow: hidden;
  }
  
  nav li:nth-last-child(2) {
    order: 1;
  }
  
  nav li a {
    display: block;
    background-color: #CCCCCC;
    color: #333333;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
  }
}
