body {
  font-size: 16px;
}

.card-dashboard-title {
  font-weight: 400;
  font-size: 22px;
  color: #ffffff !important;
  position: relative;
  top: 12px;
  opacity: 1 !important;
}

.card-dashboard-title-black {
  font-weight: 400;
  font-size: 22px;
  color: black !important;
  position: relative;
  top: 12px;
  opacity: 1 !important;
}

.card-dashboard-value {
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  color: #ffffff !important;
  position: relative;
  top: 10px;
}

.card-dashboard-value-2 {
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  color: #ffffff !important;
  position: relative;
  top: 10px;
}

.card-dashboard-value-black {
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  color: black !important;
  position: relative;
  top: 10px;
}

.popup-table tr td {
  padding: 5px;
}

.popup-property {
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: #9a9a9a;
}

.popup-value {
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: #000000;
}

.my-custom-table {
  font-size: 8px !important;
}

.custom-header {
  color: #000000 !important;
  font-size: 12px !important;
  /* Font size for headers */
}

.custom-cell {
  font-size: 12px !important;
  color: #000000 !important;
  /* Font size for cell data */
}

.custom-cell-row {
  flex-direction: row;
  width: 100px;
  justify-content: space-between;
}

.my-custom-table tbody tr > td {
  color: #000000 !important;
  /* Change text color */
}

.bg-white {
  background-color: white;
  border-radius: 5px;
}

.text-green {
  color: green;
}

.text-red {
  color: red;
}

.theme--light.v-data-table > .v-data-table__wrapper > table > thead > tr > th {
  color: #000000 !important;
  font-size: 14px !important;
}

.theme--dark.v-data-table > .v-data-table__wrapper > table > thead > tr > th {
  color: #000000 !important;
  font-size: 14px !important;
}

.theme--light.v-data-table > .v-data-table__wrapper > table > tbody > tr > td {
  color: #000000 !important;
  font-size: 14px !important;
}

.theme--dark.v-data-table > .v-data-table__wrapper > table > tbody > tr > td {
  color: #000000 !important;
  font-size: 14px !important;
}

.v-date-picker-table .v-date-picker-table__current.accent,
.v-date-picker-table .v-btn--active.accent {
  background-color: var(--v-accent-base) !important;
  border-color: var(--v-accent-base) !important;
}

.v-date-picker-table .v-date-picker-table__current.accent--text,
.v-date-picker-table .v-btn--active.accent--text {
  color: var(--v-accent-base) !important;
  caret-color: var(--v-accent-base) !important;
}

.theme--light.v-date-picker-header .v-date-picker-header__value:not(.v-date-picker-header__value--disabled) button:hover {
  color: var(--v-accent-base) !important;
}

.theme--light.v-sheet h1,
.theme--light.v-sheet h2,
.theme--light.v-sheet h3,
.theme--light.v-sheet h4,
.theme--light.v-sheet h5,
.theme--light.v-sheet h6 {
  color: #000000 !important;
}

.v-application a {
  color: var(--v-accent-base);
}

.v-pagination {
  justify-content: end !important;
}

.theme--light.v-sheet .v-card__title {
  color: black !important;
  justify-content: center;
}

.section-title {
  font-size: 20px !important;
}

.v-dialog {
  border-radius: 5px;
  margin: 24px;
  overflow-y: auto;
  pointer-events: auto;
  transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  width: 100%;
  z-index: inherit;
  outline: none;
  box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
}
.v-dialog:not(.v-dialog--fullscreen) {
  max-height: 90%;
}
.v-dialog > * {
  width: 100%;
}
.v-dialog > .v-card > .v-card__title {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.0125em;
  padding: 20px 20px 16px;
}
.v-dialog > .v-card > .v-card__text {
  padding: 0 20px 16px;
}
.v-dialog > .v-card > .v-card__subtitle {
  padding: 0 24px 20px;
}
.v-dialog > .v-card > .v-card__actions {
  padding: 0 20px 20px;
}

.v-dialog__content {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  left: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  transition: 0.2s cubic-bezier(0.25, 0.8, 0.25, 1), z-index 1ms;
  width: 100%;
  z-index: 6;
}

.v-dialog__container {
  display: none;
}
.v-dialog__container--attached {
  display: inline;
}

.v-dialog--animated {
  animation-duration: 0.15s;
  animation-name: animate-dialog;
  animation-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
}

.v-dialog--fullscreen {
  border-radius: 0;
  margin: 0;
  height: 100%;
  position: fixed;
  overflow-y: auto;
  top: 0;
  left: 0;
}
.v-dialog--fullscreen > .v-card {
  min-height: 100%;
  min-width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.v-dialog--scrollable,
.v-dialog--scrollable > form {
  display: flex;
}
.v-dialog--scrollable > .v-card,
.v-dialog--scrollable > form > .v-card {
  display: flex;
  flex: 1 1 100%;
  flex-direction: column;
  max-height: 100%;
  max-width: 100%;
}
.v-dialog--scrollable > .v-card > .v-card__title,
.v-dialog--scrollable > .v-card > .v-card__actions,
.v-dialog--scrollable > form > .v-card > .v-card__title,
.v-dialog--scrollable > form > .v-card > .v-card__actions {
  flex: 0 0 auto;
}
.v-dialog--scrollable > .v-card > .v-card__text,
.v-dialog--scrollable > form > .v-card > .v-card__text {
  backface-visibility: hidden;
  flex: 1 1 auto;
  overflow-y: auto;
}

@keyframes animate-dialog {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}
