.ag-award-container {
  width: 100%;
  height: 100%;
  /* min-height: calc(100vh - 141px); */
}

.award-board {
  width: 100%;
  height: 100%;
  min-height: calc(100vh - var(--header-height));
  /* padding: 3rem; */
  overflow: hidden scroll;
  background-color: #f5f4f2;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 4%;
  padding: 2rem 1.45rem;
  min-width: 350px;
  align-content: baseline;
}

.award-board_item {
  display: block;
  text-decoration: none;
  width: 48%;
  aspect-ratio: 1/1;
  background-image: url(../assets/images/award/award_sample.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  height: fit-content;
  border-radius: 8px;
  margin-bottom: 4%;
}
.award-result-container {
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 141px);
  overflow-y: scroll;
  background-color: white;

  padding: 0% 5% 5% 5%;
  position: absolute;
  z-index: 2;
  display: none;
  top: 0;

  margin: 0 auto;
}

.award-result-inner {
  max-width: 1128px;
  margin: 0 auto;
}

.inputContainer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 10px;
}

.inputContainer input {
  outline: navajowhite;
  padding: 5px;
  font-size: 16px;
}
.inputContainer input,
.inputContainer button {
  width: 98%;
  margin: 0 auto;
  height: 40px;
  margin-top: 1em;
}

.inputContainer button {
  background-color: #d31145;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 8px;
}
.award-result {
  margin-bottom: 20px;
}
.award-result table {
  width: 100%;
  text-align: center;
  margin-top: 40px;
  border-spacing: 0;
  border-collapse: collapse;
}
.award-result table td {
  border: 1px solid #ddd;
  padding: 10px;
  word-wrap: break-word;
}
.award-result table tr:nth-child(even) td {
  background: #f6f6f6;
}
.ag-btn--back {
  z-index: 3;
}

.award-result-container img {
  width: 100%;
  height: auto;
}
#awardName {
  text-align: center;
  margin: 30px auto;
  font-size: 28px;
  font-weight: 700;
}

h3 {
  font-weight: 400;
  font-size: 20px;
}

p {
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  margin: 20px auto;
}

label {
  font-weight: 400;
  font-size: 20px;
  text-align: center;
  width: 100%;
  display: block;
}

table td,
table th {
  max-width: 100px;
  padding: 5px 3px;
}
@media (min-width: 961px) {
  .award-board {
    gap: 2%;
    align-content: baseline;
  }
  .award-board_item {
    width: 18%;
    margin-bottom: 2%;
  }

  #awardName {
    text-align: center;
    margin: 30px auto;
    font-size: 40px;
  }

  .inputContainer {
    flex-direction: row;
    gap: 20px;
  }

  .inputContainer input {
    width: 100%;
  }

  .inputContainer button {
    width: 150px;
  }
}
