@import "../global.css";

/* ==================================================================== */

main {
  margin-inline: auto;
  margin-top: 9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
}

.list-container {
  width: calc(100% - 4rem);
  display: flex;
  border: 2px solid #333;
}

.left-box,
.right-box {
  flex-grow: 2;
  padding: 1.5rem;
  width: 40%;
  justify-self: start;
}

.transfer-btns {
  border-left: 2px solid #999;
  border-right: 2px solid #999;
  padding: 1.5rem 2rem;
}

.left-box,
.right-box,
.transfer-btns {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1rem;
}

input,
label {
  text-transform: uppercase;
}

button {
  padding: 0.5rem;
  border-radius: 5px;
  outline: none;
  border: 1px solid #333;
  box-shadow: 3px 3px 5px rgb(0 0 0 /0.1);
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  background-color: #fff;
}

button:hover {
  background-color: #999;
  color: #fff;
}

.disable-btn {
  border: 1px solid rgb(197, 197, 197);
  box-shadow: none;
  color: #999;
  background-color: rgb(211, 211, 211);
}

.disable-btn:hover {
  background-color: rgb(211, 211, 211);
  color: #999;
}
