.total {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.top {
  width: 100%;
  height: 10%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bottom {
  width: 100%;
  height: 90%;
  display: flex;
}

.topArea {
  height: 100%;
  width: 15%;
}

.mainArea {
  height: 100%;
  width: 85%;
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
  align-items: center;
}

.searchArea {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.labels {
  overflow-y: scroll;
  flex: 1;
  border: 1px solid black;
}

.rowItem {
  display: flex;
  width: 98%;
  margin: 1px;
  border: 1px solid black;
}

.item {
  display: flex;
  width: 50%;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modalContent {
  background: white;
  padding: 20px;
  border-radius: 8px;
  width: 1100px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.formGroup {
  margin-bottom: 15px;
  display: flex;
  height: 50px;
}

.formGroup label {
  display: flex;
  width: 20%;
  align-items: center;
}

.formGroup input {
  width: 80%;
  box-sizing: border-box;
}

.modalActions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.labelsContainer {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 10px;
}

.labelBubble {
  background-color: #e0e0e0;
  padding: 5px 10px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.labelBubble .deleteButton {
  background: none;
  border: none;
  color: #ff0000;
  font-size: 16px;
  cursor: pointer;
}

.labelBubble .deleteButton:hover {
  color: #cc0000;
}

.labelsContainer input {
  flex-grow: 1;
  padding: 5px;
}

div {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

div::-webkit-scrollbar {
  display: none; /* Hide scrollbars in WebKit browsers */
}

html {
  font-size: 16px;
  font-family: "Arial", sans-serif;
}
