.contOfContainer {
  background-color: #f5f5f5;
}
.conOfCont {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
}
.hrColor {
  border: 1px solid #e0e0e0;
}
.titleDashboard {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: #000000;
  padding: 20px;
}

// Type badges
.type-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.type-deposit {
  background-color: #e8f5e9;
  color: #2e7d32;
}
.type-withdraw {
  background-color: #fce4ec;
  color: #c62828;
}

// Amount
.amount-cell {
  font-family: "Inter", monospace;
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
}
.amount-deposit {
  color: #2e7d32;
}
.amount-withdraw {
  color: #c62828;
}
.amount-currency {
  font-weight: 400;
  color: #9e9e9e;
  font-size: 11px;
  margin-left: 2px;
}

// Status badges
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
}
.status-confirmed {
  background-color: #e8f5e9;
  color: #2e7d32;

  .status-dot {
    background-color: #43a047;
  }
}
.status-pending {
  background-color: #fff3e0;
  color: #e65100;

  .status-dot {
    background-color: #fb8c00;
  }
}

// Description
.description-cell {
  display: inline-block;
  max-width: 250px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
  color: #616161;
  font-size: 13px;
}

// Date
.date-cell {
  color: #757575;
  font-size: 13px;
  white-space: nowrap;
}

::v-deep {
  .transactions-table {
    border-radius: 8px;
    overflow: hidden;
  }

  .v-pagination {
    padding-right: 30px;
    align-items: center;
    display: inline-flex;
    list-style-type: none;
    justify-content: right;
    margin: 0;
    max-width: 100%;
    width: 100%;
    background: #f3f6f9;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    border: 1px solid #e0e0e0;
    margin-left: -1px;
  }
  .v-data-table-header {
    background-color: #f8fafb;
    font-family: "Inter";
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 19px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  // Column borders
  .v-data-table > .v-data-table__wrapper > table > thead > tr > th {
    border-right: 1px solid #eeeeee;
    border-bottom: 2px solid #e0e0e0 !important;
    padding: 14px 16px;
    color: #546e7a !important;

    &:last-child {
      border-right: none;
    }
  }
  .v-data-table > .v-data-table__wrapper > table > tbody > tr > td {
    border-right: 1px solid #f0f0f0;
    padding: 14px 16px;

    &:last-child {
      border-right: none;
    }
  }

  // Row hover
  .v-data-table > .v-data-table__wrapper > table > tbody > tr:hover {
    background-color: #f5fafa !important;
  }

  .theme--light.v-pagination .v-pagination__item--active {
    color: #fff !important;
    border: 1px solid #e0e0e0;
  }
  .v-pagination__item {
    background: transparent;
    border-radius: 0px;
    font-size: 10px;
    height: 23px;
    color: #29a4a7 !important;
    box-shadow: none;
    margin: 0rem;
    min-width: 25px;
    padding: 0 5px;
    text-decoration: none;
    transition: 0.3s cubic-bezier(0, 0, 0.2, 1);
    width: auto;
    border: 1px solid #e0e0e0;
  }
  .v-pagination__navigation .v-icon {
    font-size: 16px;
  }
  .v-pagination__navigation {
    box-shadow: none;
    min-width: 25px;
    margin: 0rem;
    border-radius: 0;
    border: 1px solid #e0e0e0;
  }
  table tr > td:first-child {
    background: #f8fafb;
    font-weight: 500;
    color: #546e7a;
  }
  tbody tr:nth-of-type(even) {
    background-color: #fafbfc;
  }
  .v-data-table > .v-data-table__wrapper > table > tbody > tr > td {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
  }
  .v-text-field > .v-input__control > .v-input__slot:before {
    border-color: inherit;
    border-style: none;
    border-width: 0;
  }
  .v-text-field > .v-input__control > .v-input__slot:after {
    border-color: inherit;
    border-style: none;
    border-width: 0;
  }
  .v-text-field fieldset,
  .v-text-field .v-input__control,
  .v-text-field .v-input__slot {
    border-radius: 5px;
  }
  .v-input__slot {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .titleDashboard {
    font-size: 14px;
    padding: 10px;
  }
}
