.multi-select {
  position: relative;
  box-sizing: border-box;
}

.select-box {
  border: 1px solid #ccc;
  height: 32px;
  padding: 0 8px;
  border-radius: 8px;
  cursor: pointer;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.select-box:hover {
  border-color: #4a7cff;
  box-shadow: 0 0 0 2px rgba(74,124,255,0.1);
}

.options {
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  display: none;
  z-index: 100;
  line-height: normal !important;
}

.options label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.options label:hover {
  background: #f0f3ff;
}

.arrow {
  font-size: 18px;
  opacity: 0.6;
}
