/* Mobile */
@media (max-width: 576px) {}

/* Tablette */
@media (max-width: 768px) {

}

/* Laptop */
@media (max-width: 1360px) {}

.dashboard-card {
  overflow: hidden;
}

.dashboard-card .chart-wrap {
  position: relative;
  width: 100%;
  height: 150px;
  overflow: hidden;
}

.dashboard-card .canvas.chart {
  width: 100% !important;
  height: 150px !important;
  display: block;
}

.dashboard-card.btc-ma .indicator-content {
    display: flex;
    flex-direction: column;
    gap:0.33rem;
    padding-top: 20px;
}

.dashboard-card.btc-ma .indicator {
    display: flex;
    flex-direction: row;
    justify-content:flex-start;
    border: 1px solid var(--border);
}
.dashboard-card.btc-ma .indicator .attribut-label {
    display: flex;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0;
    background: var(--border);
    padding-left: 7px;
}
.dashboard-card.btc-ma .indicator .attribut {
    min-width: 80px;
    margin-left: auto;
    text-align: center;
    font-weight: 900;
}


.btc-trend-signal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
  font-size: 12px;
}

.btc-trend-signal strong {
  font-size: 13px;
  font-weight: 600;
}

.btc-trend-signal small {
  opacity: 0.75;
  white-space: nowrap;
}

@media (max-width: 576px) {
  .dashboard-card.btc-trend .chart-wrap,
  .dashboard-card.btc-trend canvas.chart {
    height: 160px !important;
  }

  .btc-trend-signal {
    font-size: 11px;
    gap: 8px;
  }

  .btc-trend-signal strong {
    font-size: 12px;
  }
}