@tailwind base;
@tailwind components;
@tailwind utilities;


table thead > tr > th.sorting_asc, table thead > tr > th.sorting_desc, table thead > tr > th.sorting,
table thead > tr > td.sorting_asc,
table thead > tr > td.sorting_desc,
table thead > tr > td.sorting {
  padding-right: 30px;
}
table thead > tr > th:active,
table thead > tr > td:active {
  outline: none;
}
table thead .sorting,
table thead .sorting_asc,
table thead .sorting_desc,
table thead .sorting_asc_disabled,
table thead .sorting_desc_disabled {
  cursor: pointer;
  position: relative;
}
table thead .sorting:before, table thead .sorting:after,
table thead .sorting_asc:before,
table thead .sorting_asc:after,
table thead .sorting_desc:before,
table thead .sorting_desc:after,
table thead .sorting_asc_disabled:before,
table thead .sorting_asc_disabled:after,
table thead .sorting_desc_disabled:before,
table thead .sorting_desc_disabled:after {
  position: absolute;
  bottom: 0.9em;
  display: block;
  opacity: 0.3;
}
table thead .sorting:before,
table thead .sorting_asc:before,
table thead .sorting_desc:before,
table thead .sorting_asc_disabled:before,
table thead .sorting_desc_disabled:before {
  right: 1em;
  content: "\2191";
}
table thead .sorting:after,
table thead .sorting_asc:after,
table thead .sorting_desc:after,
table thead .sorting_asc_disabled:after,
table thead .sorting_desc_disabled:after {
  right: 0.5em;
  content: "\2193";
}
table thead .sorting_asc:before,
table thead .sorting_desc:after {
  opacity: 1;
}
table thead .sorting_asc_disabled:before,
table thead .sorting_desc_disabled:after {
  opacity: 0;
}

.v-select .vs__dropdown-toggle{
  padding-top: 0.3rem; 
  padding-right: 0.75rem; 
  padding-bottom: 0.4rem; 
  padding-left: 0.75rem;
}

:root {
 --popper-theme-background-color: #ffffff;
 --popper-theme-background-color-hover: #ffffff;
 --popper-theme-text-color: #333333;
 --popper-theme-border-width: 1px;
 --popper-theme-border-style: solid;
 --popper-theme-border-color: #eeeeee;
 --popper-theme-border-radius: 6px;
 --popper-theme-padding: 32px;
 --popper-theme-box-shadow: 0 6px 30px -6px rgba(0, 0, 0, 0.25);
}
.v-select:not(.vs--open) .vs__selected + .vs__search {
 height: 0;
 margin: 0;
}
.v-select .vs__selected-options {
 overflow: hidden;
 text-overflow: ellipsis;
 white-space: nowrap;
}