/* src/mod/drop/style.css */
.slim-drop {
  position: relative;
  display: inline-block;
  line-height: normal;
}
:is(td, th):has(.slim-drop) {
  overflow: visible !important;
}
.slim-drop .drop-content {
  display: none;
  position: absolute;
  padding: 4px;
  border-radius: 8px;
  min-width: 100px;
  white-space: nowrap;
  background-color: #FFFFFF;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  z-index: 1;
}
.slim-drop .drop-content a {
  display: block;
  line-height: 2.25;
  padding: 0 8px;
  text-align: left;
  text-decoration: none;
  border-bottom: 1px solid #E5E7EB;
}
.slim-drop .drop-content a:first-child {
  border-radius: 8px 8px 0 0;
}
.slim-drop .drop-content a:last-child {
  border: none;
  border-radius: 0 0 8px 8px;
}
.slim-drop .drop-content a:hover {
  background-color: rgba(0, 0, 0, 0.04);
}
.slim-drop.select select {
  display: none;
}
.slim-drop.select .drop-content {
  border-radius: 0;
  max-height: 60vh;
  overflow-y: auto;
}
.slim-drop.select .drop-content::-webkit-scrollbar {
  width: 3px;
}
.slim-drop.select .drop-content a {
  border-radius: 0;
  font-family: "Sarabun";
  border-bottom: none;
}
.slim-drop.select .drop-content a:hover {
  background-color: #E5E7EB;
}
.slim-drop.select a.selected {
  color: #FFFFFF;
  background-color: #06B6D4;
  pointer-events: none;
}
/*# sourceMappingURL=style.css.map */