body .contents {
  position: relative;
  height: 100vh;
  width: 100%;
}
body .contents .contents-title {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
body .contents .contents-title a {
  color: var(--color-blue);
  border: 1px solid var(--color-blue);
  padding: 5px 10px;
}
body .contents table {
  width: 100%;
}
body .contents table th,
body .contents table td {
  border: 1px solid var(--color-gray);
  padding: 5px 10px;
  text-align: center;
}
body .contents table th {
  font-weight: 600;
}
body .contents table td .image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
body .contents table td .image-container img {
  height: 20px;
  margin-right: 10px;
  -o-object-fit: contain;
     object-fit: contain;
}
body .contents table td button {
  background-color: transparent;
  padding: 0 10px;
}
body .contents table td .edit-btn {
  border: 1px solid var(--color-blue);
  color: var(--color-blue);
}
body .contents table td span {
  margin: 0 5px;
}
body .contents table td .delete-btn {
  border: 1px solid var(--color-red);
  color: var(--color-red);
}/*# sourceMappingURL=Admin-list.css.map */