html,
body {
  min-width: 1200px;
  overflow-x: auto;
  overflow-y: auto;
}

table {
  border-collapse: collapse;
}
table td {
  border: 1px solid black;
}
table tr:last-child td {
  border-bottom: 0;
}
table tr td:first-child {
  border-left: 0;
}
table tr td:last-child {
  border-right: 0;
}

.home-container {
  display: grid;
  width: 984px;
  grid-template-areas: "left right";
  grid-template-columns: 200px 784px;
  gap: 8px;
  align-items: start;
}

.home-right {
  padding: 0 10px 10px 10px;
  grid-area: right;
}

.home-right .home-main {
  display: grid;
  width: 764px;
  grid-template-areas: "left right";
  grid-template-columns: 492px 264px;
  gap: 8px;
  align-items: start;
}

.home-right .home-main p {
  font-size: 14px;
  text-align: justify;
}

.home-right .home-main input {
  margin-bottom: 5px;
  width: 100%;
}

.home-right .home-main .home-main-left {
  grid-area: left;
  max-height: 668px;
  overflow-y: scroll;
}

.home-right .home-main .home-main-right {
  grid-area: right;
  align-content: center;
}

.home-left {
  grid-area: left;
  align-content: center;
  text-align: center;
}

.home-left .home-left-element {
  margin: auto;
  text-align: left;
}