main {
  background: #f1f1f1;
  padding: 32px 15%;
  display: flex;
  justify-content: center;
}

.container__main {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1300px;
}

.container__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 30px;
}

.container__title {
  color: black;
}

.container__number {
  color: gray;
}
.container__number::before {
  content: "Block ";
  color: black;
}

.witness {
  color: gray;
}
.witness::before {
  content: "by ";
  color: black;
}

.account {
  color: gray;
}
.account::before {
  content: "@";
  color: black;
}

.navigation {
  text-decoration: none;
  color: rgb(0, 153, 255);
}
.navigation:hover {
  color: rgb(0, 104, 173);
  text-decoration: underline;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 3px;
  position: relative;
}

.cards__title {
  margin-bottom: 20px;
  font-size: 20px;
  color: gray;
}

.card {
  background-color: white;
  padding: 10px;
  border: 1px solid rgb(232, 230, 230);
  border-radius: 4px;
  display: grid;
  grid-template-columns: min-content 1fr min-content;
  gap: 10px;
}
.card:hover {
  background-color: rgba(255, 255, 255, 0.7215686275);
}
.card--active {
  background-color: #fffbcc !important;
}

.image__box {
  width: 55px;
  display: grid;
  grid-template-columns: fit-content 1fr;
  justify-items: center;
}

.customer {
  display: grid;
  grid-template-columns: max-content 1fr min-content;
  font-size: 18px;
  gap: 10px;
}

.customer__info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-width: 1200px;
}

.customer__block {
  text-decoration: none;
  color: black;
}
.customer__block:hover {
  color: rgb(0, 104, 173);
  text-decoration: underline;
}

.customer__name {
  text-decoration: none;
  color: rgb(0, 153, 255);
}
.customer__name:hover {
  color: rgb(0, 104, 173);
  text-decoration: underline;
}

.custom__json {
  color: gray;
}

.custom__index {
  font-size: 25px;
}

.additional__info {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  text-align: center;
}

.table__data {
  width: 100%;
  border: 1px solid rgb(232, 230, 230);
  color: rgb(121, 119, 119);
  font-size: 14px;
  background-color: white;
}

.table__row {
  display: grid;
  grid-template-columns: 1fr 5fr;
  border-bottom: 1px solid #ddd;
}

.table__row:last-child {
  border-bottom: none;
}

.table__item {
  font-weight: bold;
  border-right: 1px solid rgb(232, 230, 230);
  padding: 8px;
}

.table__value {
  padding: 8px;
  max-width: 900px;
  word-wrap: break-word; /* Break long words to prevent horizontal overflow */
}

.values_required_auths,
.values_required_posting_auths {
  display: grid;
  grid-template-columns: min-content 1fr;
  width: fit-content;
  border: 1px solid rgb(232, 230, 230);
}

.index {
  font-weight: bold;
  background-color: #f1f1f1;
  padding: 5px;
}

.value {
  padding: 5px;
}

.table__row:hover {
  background-color: #f2efef;
}

.id__info {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 5px;
  position: relative;
}

.button-copy {
  padding: 0 2px;
}
.button-copy:active {
  background-color: rgba(63, 63, 136, 0.147);
}

.button-copy:before {
  content: "Copied";
  position: absolute;
  top: -31.5px;
  right: 3px;
  color: white;
  background-color: rgb(184, 184, 184);
  padding: 6px 8px;
  border-radius: 3px;
  font-size: 12px;
  display: none;
}

.button-copy::after {
  content: "";
  position: absolute;
  top: -10px;
  right: 24px;
  width: 8px;
  height: 8px;
  background: rgb(184, 184, 184);
  transform: rotate(45deg);
  display: none;
}

.button-copy--active:before,
.button-copy--active:after {
  display: block;
}

.customer__id {
  text-decoration: none;
  color: rgb(121, 119, 119);
  display: flex;
  width: fit-content;
  font-size: 13px;
}
.customer__id:hover {
  text-decoration: underline;
  color: rgb(0, 104, 173);
}

.footer {
  font-size: 14px;
  color: rgb(189, 189, 189);
  width: fit-content;
}
.footer:hover {
  cursor: default;
  text-decoration: underline;
  color: rgb(0, 104, 173);
}

.gradientCanvas {
  background-color: #e5e5f7;
  opacity: 0.8;
  background-image: linear-gradient(135deg, #444cf7 25%, transparent 25%), linear-gradient(225deg, #444cf7 25%, transparent 25%), linear-gradient(45deg, #444cf7 25%, transparent 25%), linear-gradient(315deg, #444cf7 25%, #e5e5f7 25%);
  background-position: 10px 0, 10px 0, 0 0, 0 0;
  background-size: 10px 10px;
  background-repeat: repeat;
  width: 50px;
  height: 50px;
}

.error__message {
  font-size: 20px;
}

#buttonScroll {
  border-radius: 24px;
  padding: 12px;
  background-color: #ff7538;
  align-items: center;
  width: 45px;
  height: 45px;
  transition: opacity 0.7s;
  position: fixed;
  bottom: 45px;
  right: 300px;
  display: none;
}
#buttonScroll:hover {
  opacity: 0.7;
}

.index__page {
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.logo__index {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.logo__index__title {
  font-size: 50px;
}

.search__container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.input__index {
  border: 1px solid gray;
  border-radius: 3px;
  background-color: #ffffff;
  padding: 10px;
  font-size: 18px;
  min-height: 35px;
  min-width: 500px;
  transition: border-color 0.3s;
}
.input__index::placeholder {
  color: gray;
}
.input__index:focus {
  border: 2px solid black;
  background-color: rgba(128, 128, 128, 0.064);
}
.input__index--active {
  border: 1px solid rgba(254, 30, 30, 0.87);
}

.search__form__index {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
}
.search__form__index--error {
  color: red;
  font-size: 14px;
  display: none;
}
.search__form__index--error--active {
  display: block;
}

.search__index {
  border: 1px solid gray;
  background-color: #ffffff;
  border-radius: 3px;
  padding: 10.5px;
}
.search__index:active {
  background-color: rgba(63, 63, 136, 0.147);
}

.validation--active {
  border-color: red !important;
}

/*# sourceMappingURL=index.css.map */
