body {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f4f6f8;
  font-family: Arial, sans-serif;
}
.card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background: #ffffff;
  padding: 24px;
  width: 300px;
}
h2 {
  font-size: 18px;
  text-align: center;
}
input[type="text"] {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 10px;
}
button {
  cursor: pointer;
  border: none;
  border-radius: 4px;
  background: #007bff;
  padding: 10px;
  width: 100%;
  color: #ffffff;
}
button:hover {
  background: #0056b3;
}
.tx {
  border: 1px solid lightgrey;
  height: 30px;
}
#content {
  display: flex;
}

#left {
  width: 100%;
  max-width: 50%;
}

#right {
  width: 100%;
  max-width: 50%;
}

#d-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.designs {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  border: 1px solid #eee;
  padding: 8px;

  p {
    margin: 5px 0 0 0;
  }

  &:hover {
    border: 1px solid gray;
  }
}

#label-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background: #ffffff;
  padding: 24px;

  #specs {
    display: flex;
    flex-direction: column;

    label {
      display: flex;
      gap:5px;
      margin-left: 10px;
      font-weight: 100;
    }
  }

  label {
    display: inline-block;
    font-weight: bold;
    font-size: 16px;
  }
}
