.admin-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
}
svg {
  cursor: pointer;
}
.item-previews {
  flex: 1 1 200px;
}
.admin-action {
  flex: 1 1 200px;
  background-color: blue;
}

.admin-btn {
  padding: 10px 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  background-color: rgb(84, 84, 255);
  border: 2px solid rgb(81, 81, 254);
  border-radius: 5px;
  color: white;
  box-shadow: 0 0 5px rgba(54, 54, 54, 0.555);
  cursor: pointer;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  svg {
    stroke: rgb(255, 255, 255);
    stroke-width: 1;
  }
}

.actions {
  display: flex;
  justify-content: center;
  align-items: center;
  border-left: 1px solid black;
  padding: 5px 10px;
  gap: 10px;
}
.item-rignt {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.admin-banner {
  position: relative;
}
.edit-catagory {
  position: absolute;
  right: 10px;
  bottom: 10px;
  border: none;
  padding: 1rem;
  gap: 1rem;
  background-color: white;
  /* background-color: #0800ff; */
  border-radius: 5px;
}
.form-body {
  width: 100%;
  min-height: 100vh;
  height: auto;
  position: absolute;
  background-color: rgba(226, 253, 255, 0.432);
  backdrop-filter: blur(15px);
  top: 0;
  left: 0;
  z-index: 999;
  transition: 0.4s;
}
.editactive {
  display: none;
  opacity: 0;
}
.cross{
  position: absolute;
  right: 1rem;
  top: 1rem;
}
#add-item {
  display: flex;
  flex-direction: column;
  svg {
    position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
  }
}
.form-heading {
  color: white;
  text-transform: uppercase;
  text-align: center;
}
.user-edit {
  padding: 10px 20px;
  color: white;
  background-color: transparent;
  width: 100%;
  border: 2px solid white;
  /* text-transform: uppercase; */
  font-size: 1rem;
  letter-spacing: 2px;
  cursor: pointer;
}
.action-box {
  max-width: 300px;
  height: auto;
  position: relative;
  top: calc(10% + 3rem);
  background-color: rgb(24, 164, 134);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border: 2px solid white;
  padding: 2rem;
  border-radius: 10px;
}
.input-box {
  width: 100%;
  label {
    display: block;
    color: white;
    text-transform: capitalize;
  }
  input {
    width: 100%;
    padding: 5px;
    border: 2px solid white;
    background-color: transparent;
  }
}
.preview-photo input {
  width: 100%;
  padding: 5px;
  border: 2px solid white;
  background-color: transparent;
}
.action-box .admin-btn{
  flex: 1;
  width: 100%;
}
