.bag-in {
  width: 100%;
  padding: 0 1.5em;
}
.bag-in h2 {
  font-size: 2em !important;
}
.bag-in form {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 1.5em 1em;
  border-radius: 0.5em;
}
.bag-in form label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #555;
}
.bag-in form input[type=text], .bag-in form input[type=file] {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #a4deba;
  border-radius: 4px;
  font-size: 1.05em;
  color: #43c46e;
}
.bag-in form select {
  outline: none;
  border: 1px solid #a4deba;
  padding: 10px;
}
.bag-in form select option {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #a4deba;
  border-radius: 4px;
  font-size: 1.05em;
  color: #43c46e;
}
.bag-in form button {
  width: 100%;
  padding: 10px;
  background-color: #43c46e;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-weight: 600;
  font-size: 1.25em;
}
.bag-in form button:hover {
  background-color: #0056b3;
}

.bag-in .bag-card-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75em;
  width: 100%;
}
.bag-in .bag-card-container .bag-details {
  width: 100%;
  height: 20vh;
  background-color: rgba(0, 0, 0, 0.075);
  outline: none;
  border: none;
  border-radius: 0.5em;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  overflow: hidden;
}
.bag-in .bag-card-container .bag-details img {
  width: 100%;
  height: 15vh;
  overflow: hidden;
}
.bag-in .bag-card-container .bag-details p {
  color: #43c46e;
  font-size: 1.25em;
  height: 5vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bag-in .bag-card-container .bag-details text {
  display: none;
}

.clothes-design {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.clothes-design h1 {
  font-size: 2em !important;
}
.clothes-design .filter-container {
  width: 100%;
  height: 7.5vh;
  display: grid;
  padding: 0 2em;
  grid-template-columns: 80% auto;
  gap: 0.5em;
}
.clothes-design .filter-container input {
  font-size: 1.25em;
  color: #43c46e;
  outline: none;
  border: solid 1px #a4deba;
  padding-left: 0.5em;
  border-radius: 1em;
}
.clothes-design .filter-container button {
  outline: none;
  border: none;
  background-color: #a4deba;
  border-radius: 1em;
  font-size: 1.25em;
  color: #fff;
  font-weight: 800;
}
.clothes-design .cloth-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.5em;
  max-height: 60vh;
  overflow: hidden;
  overflow-y: scroll;
  padding: 1em;
}
.clothes-design .cloth-container .cloth-card {
  display: flex;
  width: 100%;
  height: 20vh;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.1);
  padding: 0.5em;
  border-radius: 1em;
}
.clothes-design .cloth-container .cloth-card .img-name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #ccc;
  padding: 0 0.5em;
}
.clothes-design .cloth-container .cloth-card .img-name img {
  width: 100px;
  height: 100px;
}
.clothes-design .cloth-container .cloth-card .img-name h3 {
  font-size: 1em;
}
.clothes-design .cloth-container .cloth-card .name-date-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #ccc;
  padding: 0 0.5em;
}
.clothes-design .cloth-container .cloth-card .name-date-btn img {
  width: 100px;
  height: 100px;
}
.clothes-design .cloth-container .cloth-card .name-date-btn h3 {
  font-size: 1em;
}
.clothes-design .cloth-container .cloth-card .remove-btn button {
  background-color: #ff0000;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 5px 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 1em;
  margin-left: 0.5em;
}/*# sourceMappingURL=menu.css.map */