/* .index-container .content {
  padding: 150px 0;
} */
/* .index-container .title {
  text-align: center;
  margin: 60px 0 80px;
} */
.index-container .content {
  padding-top: 100px;
}
.index-container .title {
  margin-bottom: 70px;
}
.index-container .nav {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin: 50px auto 0;
}
.index-container .nav-item {
  display: inline-block;
  background-color: white;
  padding: 50px 35px 40px;
  border-radius: 10px;
  text-align: center;
  font-size: 20px;
  color: #6c6c6c;
  letter-spacing: 2px;
}
.index-container .nav-item img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin: auto;
}
.index-container .nav-item p {
  margin-top: 30px;
  font-size: 24px;
}

.locker-container .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.locker-container .subtitle {
  margin: 20px 0 20px;
  font-size: 20px;
  color: white;
}
.locker-container .cabinet {
  padding: 5px;
  background-color: white;
  border-radius: 4px;
}

.locker-container .cabinet-controls {
  display: flex;
  flex-direction: column;
  align-items: end;
  border: 1px solid #333;
  padding: 70px 35px 50px;
  margin-bottom: 3px;
}
.locker-container .cabinet-controls .screen {
  width: 100%;
  height: 80px;
  margin: 0 auto 20px;
  border: 1px solid #333;
  background: linear-gradient(135deg, #dcf1fb 0 50%, #b7e2f8 50% 100%);
}
.locker-container .cabinet-controls .button {
  width: 30px;
  height: 25px;
  border: 1px solid #333;
}

.locker-container .cabinet-lockers {
  display: grid;
  grid-template-columns: repeat(2, 90px);
  gap: 3px 10px;
}
.locker-container .locker-label {
  font-size: 18px;
  text-align: center;
}
.locker-container .locker-item {
  padding: 25px 10px;
  border: 1px solid #333;
  cursor: pointer;
}
.locker-container .locker-selected {
  background-color: #cfcfcf;
  color: #666;
}
.locker-container .locker-unselected {
  background-color: #62c462;
  color: white;
}

.locker-container .locker-legend {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}
.locker-container .locker-legend-item {
  display: flex;
  align-items: center;
  gap: 5px;
  color: white;
}
.locker-container .locker-legend-item::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 2px;
}
.locker-container .locker-legend-item.unselected::before {
  background-color: #62c462;
}
.locker-container .locker-legend-item.selected::before {
  background-color: #cfcfcf;
}

/* .locker-container .cabinet-status-message {
    text-align: center;
    margin-bottom: 20px;
    color: #555;
    font-size: 16px;
  }
  .locker-container .cabinet-status-message.error {
    color: #c0392b;
  } */
