.tcx-stock-widget {
  font-family: Arial, Helvetica, sans-serif;
  background: #f3f3f3;
  padding: 24px 28px 18px;
  max-width: 860px;
  width: 100%;
  box-sizing: border-box;
}

.tcx-stock-widget__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.tcx-stock-widget__title {
  margin: 0;
  font-size: 38px;
  font-weight: 400;
  color: #111;
  line-height: 1.2;
}

.tcx-stock-widget__symbol-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.tcx-stock-widget__label {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
  color: #666;
  line-height: 1.3;
}

.tcx-stock-widget__top {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.tcx-stock-widget__arrow {
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-bottom: 28px solid #35c759;
  transform-origin: center;
  flex: 0 0 auto;
}

.tcx-stock-widget.down .tcx-stock-widget__arrow {
  transform: rotate(180deg);
  border-bottom-color: #e53935;
}

.tcx-stock-widget__price {
  font-size: 74px;
  line-height: 1;
  font-weight: 700;
  color: #000;
}

.tcx-stock-widget__change {
  font-size: 22px;
  font-weight: 700;
  color: #35c759;
  margin-top: 14px;
}

.tcx-stock-widget.down .tcx-stock-widget__change {
  color: #e53935;
}

.tcx-stock-widget__date {
  font-size: 22px;
  font-weight: 700;
  color: #666;
  margin-bottom: 22px;
  line-height: 1.3;
}

.tcx-stock-widget__chart-wrap {
  position: relative;
  background: #fff;
  overflow: visible;
  width: 100%;
  border: 1px solid #e5e5e5;
}

.tcx-stock-widget__current-price-tag {
  position: absolute;
right: 0;
transform: translateY(-50%);
background: #222;
color: #fff;
font-size: 12px;
font-weight: 700;
padding: 4px 6px;
line-height: 1.2;
pointer-events: none;
z-index: 3;
min-width: 51px;
text-align: center;
transition: background-color 0.2s ease, color 0.2s ease;
}

.tcx-stock-widget__chart-wrap canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.tcx-stock-widget.up .tcx-stock-widget__current-price-tag {
  background: #35c759;
  color: #fff;
}

.tcx-stock-widget.down .tcx-stock-widget__current-price-tag {
  background: #e53935;
  color: #fff;
}

@media (max-width: 768px) {
  .tcx-stock-widget {
    padding: 18px 18px 14px;
  }

  .tcx-stock-widget__title {
    font-size: 28px;
  }

  .tcx-stock-widget__symbol-badge {
    min-width: 56px;
    height: 30px;
    font-size: 14px;
  }

  .tcx-stock-widget__label {
    font-size: 18px;
  }

  .tcx-stock-widget__price {
    font-size: 48px;
  }

  .tcx-stock-widget__change {
    font-size: 18px;
    margin-top: 0;
  }

  .tcx-stock-widget__date {
    font-size: 18px;
  }
}