* {
  outline: none;
  box-shadow: none;
}

html,
body {
  margin: 0;
  padding: 0;
  border: none;
}

/* Style the entire scrollbar */
::-webkit-scrollbar {
  width: 3px;
  /* Set width for vertical scrollbar */
  height: 3px;
  /* Set height for horizontal scrollbar */
}

/* Style the scrollbar track */
::-webkit-scrollbar-track {
  background: #e5e7eb;
  border-radius: 6px;
}

.dark ::-webkit-scrollbar-track {
  background: #1a1a1a;
}

/* Style the scrollbar thumb
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 6px;
} */

/* Style the scrollbar thumb on hover
::-webkit-scrollbar-thumb:hover {
  background: #555;
} */

#tab-content-chart {
  height: calc(100% - 44px);
  /* 44px — высота табов и отступов */
  min-height: 0;
}

.tradingview-widget-container {
  height: 100% !important;
  min-height: 0;
  /* color: #2d2f33; */
  /* color: #6c6d74; */
}

.tradingview-widget-container__widget {
  height: 100% !important;
  min-height: 0;
}

select {
  -webkit-appearance: none;
  /* Для Safari и Chrome */
  -moz-appearance: none;
  /* Для Firefox */
  appearance: none;
  /* Для других браузеров */
  background-image: url('../img/icons/chevron.svg');
  /* Добавьте фоновое изображение */
  background-repeat: no-repeat;
  background-size: 25px;
  background-position: right center;

}


.trade-idetails,
.order-book-item {
  white-space: nowrap;
  /* display: flex;
  align-items: center; */
  /* position: absolute; */
  /* left: 0; */
  /* right: 0; */
  height: 20px;
  cursor: pointer;
  padding: 2px 0;
  line-height: 20px;
  list-style: none;
  display: flex;
  align-items: center;
  overflow: hidden;

  span {
    display: inline-block;
    text-align: right;
    font-size: 12px;
    font-weight: 500;
    flex: 1;
    color: #374151;
    width: 33%;
    text-align: right;
  }

  .dark span {
    color: #fcfdff;
  }

  span:first-child {
    color: #f13c54;
    text-align: left;
  }

}

/* .trade-idetails {
  span {
    width: 50%;
  }
}

.order-book-item {
  width: 33%;

  span:first-child {
    color: #f13c54;
  }
} */
.blit-body {
  display: grid;
  grid-template-columns: 1fr 2fr;

  font-size: 12px;
  font-weight: 500;
  flex: 1;
  color: #374151;
  /* padding: 2px 16px; */
}

.dark .blit-body {
  color: #fcfdff;
}

.blit-item {
  position: relative;
  line-height: 20px;
  cursor: pointer;
  margin: 2px 0;
  transition: 0.2s ease;
}

.blit-item:hover {
  background-color: #f3f4f6;
}

.dark .blit-item:hover {
  background-color: #2d2d2e;
}
.blit-price {}

.blit-price.up {
  color: #04b97d;
}

.blit-price.down {

  color: #f13c54;
}

.blit-progrees {
  position: absolute;
  right: 0;
  top: 1px;
  z-index: 1;
  bottom: 1px;
  width: 100%;
  transition-property: transform;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  transition-duration: .15s;
}

.blitp-layout {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  transition: 0.2s ease;
}

.blitp-layout.down {

  background-color: rgba(241, 60, 84, .14);
}

.blitp-layout.up {
  background-color: rgba(4, 185, 125, .14);
}


.blit-data {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  text-align: right;
}

.trade-iprice.up {
  color: #04b97d !important;
}

.trade-iprice.down {
  color: #f13c54 !important;
}






* {
  outline: none;
  box-shadow: none;
}
html, body {
  margin: 0;
  padding: 0;
  border: none;
}

#tab-content-chart {
  height: calc(100% - 44px); /* 44px — высота табов и отступов */
  min-height: 0;
}
.tradingview-widget-container {
  height: 100% !important;
  min-height: 0;
}
.tradingview-widget-container__widget {
  height: 100% !important;
  min-height: 0;
} 

::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

::-webkit-scrollbar-track {
  background: #f3f4f6;
  border-radius: 3px;
}

.dark ::-webkit-scrollbar-track {
  background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
  background: #9ca3af;
  border-radius: 3px;
  transition: background 0.2s ease;
}

.dark ::-webkit-scrollbar-thumb {
  background: #404040;
}

::-webkit-scrollbar-thumb:hover {
  background: #6b7280;
}

.dark ::-webkit-scrollbar-thumb:hover {
  background: #606060;
}

/* Tab styles */
.tabs-btn {
  cursor: pointer;
  transition: all 0.2s ease;
}

.tabs-btn[data-active="true"] {
  border-bottom-color: #facc15 !important;
  color: #facc15 !important;
}

.tabs-body {
  display: block;
}

.tabs-body.hidden {
  display: none !important;
}

.tabs-body.is-active {
  display: block !important;
}

/* Trade history specific styles */
.trades-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.order-book-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 12px;
}

.dark .order-book-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.order-book-item:last-child {
  border-bottom: none;
}

.trade-iprice {
  flex: 1;
  text-align: left;
}

.trade-amount {
  flex: 1;
  text-align: center;
}

.trade-time {
  flex: 1;
  text-align: right;
  color: rgba(107, 114, 128, 0.8);
}

.dark .trade-time {
  color: rgba(235, 236, 245, 0.7);
}