.content-wrapper {
  position: relative;
  z-index: 2;
}

.btn{
  background-color: #ff3f00;
  border: 2px solid #ff3f00;
  border-radius: 5px;
  color: #ffffff;
  margin: 2px;
  padding: 5px 10px;
}

.btn:hover{
  background-color: white;
  border-radius: 5px;
  color: #ff3f00;
}

.card {
  background-color: whitesmoke;
  border: 3px solid #1f0f00;
  border-radius: 15px;
  color: #1F0F00;
  font-size: 24px;
  padding: 10px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
  height: 60px;
  width: 96px;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.cooked-card {
  background-color: #1F0F00;
  border: none;
  color: whitesmoke;
}

.card-area {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-start;
}

.cooked-btn{
  background-color: #00FF00;
  border: none;
  border-radius: 5px;
  color: white;
}

.cooked-btn:hover{
  background-color: #00BF00;
}

.content{
  display: inline-block;
}

.complete-btn, .del-btn{
  background-color: #FF3333;
  border: none;
  border-radius: 5px;
  color: white;
}

.complete-btn:hover, .del-btn:hover{
  background-color: #FF7777;
}

.err{
  color: red;
}

.input-date{
  border-radius: 5px;
  outline: none;
}

.input-num{
  border: 2px solid #000000;
  border-radius: 5px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 20px;
  font-weight: 600;
  height: 30px;
  outline: none;
  width: 64px;
  text-align: center;
}

.input-text{
  border-radius: 5px;
  outline: none;
}

.input-time{
  border-radius: 5px;
  outline: none;
}

.loc-btn{
  background-color: #ff3f00;
  border: 2px solid #ff3f00;
  border-radius: 5px;
  color: white;
  font-weight: bold;
  margin: 5px;
  padding: 10px 25px;
}

.loc-btn:hover{
  background-color: white;
  border-radius: 5px;
  color: #ff3f00;
}

.loc-txt{
  background-color: white;
  border: 2px solid #ff3f00;
  color: #ff3f00;
  font-weight: 600;
  margin: 5px;
  padding: 10px 25px;
}

.mark-btn{
  background-color: lightgray;
  border: none;
  border-radius: 5px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 1000;
}

.middle{
  width: 50%;
  margin: 0 auto;
}

.myname{
  display: inline-block;
  font-weight: bold;
  text-align: center;
  width: 100px;
}

.name{
  display: inline-block;
  width: 100px;
}

.plane-txt {
  font-size: 20px;
  padding: 0px 10px;
}

.right{
  position: absolute;
  right: 0;
}

.subtitle {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 20px;
  font-weight: bold;
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

td, th {
  border-right: none;
  padding: 8px; 
}

td:not(:last-child) {
  border-right: none;
}

.td-sauce {
  background: linear-gradient(to right, #ffffff 0%, #ff7f00 10%, #ff7f00 90%, #ffffff 100%);
  color: white;
}

.title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 24px;
  font-weight: 900;
  padding-bottom: 30px;
  padding-top: 5px;
  position: relative;
  text-align: center;
  width: 100%;
}

.title::after {
  background-color: black;
  bottom: 25px;
  content: "";
  height: 1px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 50px;
}

.text-err{
  border-color: red;
}

tr:not(:last-child) td {
  border-bottom: 1px solid #000000
}

tr:first-child td {
  border-bottom: none;
}