@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&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');
body{
  font-family: Poppins;
  background-color: #edeff0;
  margin: 0;
  height:100%;
}
.wrapper{
  margin: 0 auto;
  padding: 20px;
  width: 100%;
  max-width: 1200px;
  /*min-height: 100vh;*/
  background-color: #fff;
  border-sizing: border-box;
}
h1, h2, h3, h4, h5 {
  font-weight: 300;
}

input, textarea{
  width: 100%;
  padding: 10xp;
  box-sizing: border-box;
  border: 1px solid #bbb;
}

label{
  display: block;
  margin-bottom: 20px;
}
table{
  width: 100%;
  table-layout: fized;
  margin-bottom: 20px;
}

.faded{
  color: #bbb;
}
nav{
  display: flex;
}
nav a{
  display: block;
  text-align: center;
  padding: 8px 18px;
  color: red;
  text-decoration: none;
}
.edit a{
  text-decoration: none;
  color: green;
}
.delete a{
  text-decoration: none;
  color: red;
}
.material-symbols-outlined{
  display: block;
  font-size: 24px;
  padding: 8px 24px;
}
footer{
  font-size: 12px;
  text-align: center;
  border-top: 1px solid #c0c0c0;
}
.input-caption{
  display: inline-flex;
  width: 100%;
  
}
.input-caption input{
  width: calc(100% - 50px);
  margin-left: auto;
}
.text-caption{
  min-height: 400px;
}
.text-caption textarea{
  min-height: 100%;
}