body {
  font-size: 1rem !important;
  font-family: serif;
}
a {
  text-decoration: none;
}
p {
  margin-bottom: 5px !important;
}

.header-top {
  margin-top: 8px !important;
}
.v-banner-actions {
  align-self: flex-start !important;
}
table tr:hover{
  background-color: #F1F3F4;
}

label, input, .v-field {
  font-size: 0.8rem !important;
}

.v-label {
  font-size: 0.75rem !important;
}

.v-messages {
  font-size: 10px !important;
}

.v-input--density-compact {
  --v-input-control-height: 32px !important;
  --v-input-padding-top: 2px !important;
}
.v-input--density-compact .v-field--no-label, .v-input--density-compact .v-field--single-line, .v-input--density-compact .v-field--variant-outlined {
  --v-field-padding-bottom: 2px;
}

.v-card--variant-outlined, .v-card--variant-plain, .v-card--variant-text, .v-card--variant-tonal {
  border: thin solid #ecebeb;
}

.v-list-item {
  min-height: 35px !important;
}
.v-list-item-title {
  font-size: 0.8rem !important;
  line-height: 1rem !important;
}
.v-list-item-subtitle {
  font-size: 0.70rem !important;
}
.v-list-item-action--start {
    margin-inline-end: -8px !important;
}
.v-list-group {
  --prepend-width: 10px !important;
}
.v-list-item__prepend>.v-badge~.v-list-item__spacer, .v-list-item__prepend>.v-icon~.v-list-item__spacer, .v-list-item__prepend>.v-tooltip~.v-list-item__spacer {
  width: 8px !important;
}
.v-navigation-drawer--rail .v-list-group__items .v-list-item {
  padding-inline-start: 8px !important;
}

.v-stepper-header {
  height: 50px !important;
}
.v-input__control {
  height: 32px !important;
}
.v-card-actions {
  min-height: 40px !important;
}
/* div vertical center */
.div-centered { position: relative; height: 100%; }
.centered-element { margin: 0; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.max-width-120 {
  white-space: nowrap !important;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 120px;
}
@media only screen and (max-width: 767px) {
  .header-top {
    margin-top: 0 !important;
  }
  .v-list-group {
    --list-indent-size: -8px !important;
  }
}

.htSelectEditor select {
  appearance: none; /* Remove default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('https://cdn-icons-png.flaticon.com/512/32/32195.png'); /* Your custom arrow icon */
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
  padding-right: 20px; /* Space for the custom arrow */
}

/* Optional: Additional style to align the dropdown arrow */
.htSelectEditor select::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  pointer-events: none;
}

.v-messages__message {
  margin-top: -5px !important;
}

.htSelectEditor {
  color: #fff;
  opacity: 0;
}
.htDropdown {
  position: relative;
}
.htDropdown:after {
  content: '▼';
  font-size: 0.8em;
  position: absolute;
  right: 3px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #bbb;
}

.required .v-label::after {
  content: " *";
  font-size: 14px !important;
  color: red;
  font-weight: bold;
}

.text-upper .v-field--active input {
  text-transform: uppercase !important;
}

.v-table--density-compact{
  --v-table-header-height: 28px !important;
  --v-table-row-height: 28px !important;
}