.djdash-container {
  font-family: Arial, sans-serif;
  margin-top: var(--gap-default);
}
.djdash-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--gap-default);
}
.djdash-description {
  font-size: 11px;
  line-height: 14px;
  color: var(--v2-light-color);
  margin-bottom: 15px;
}
.djdash-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.djdash-table th {
  background: var(--v2-background-light);
  padding: 8px;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
}
.djdash-table th:hover {
  background: var(--v2-background-medium);
}
.djdash-table td {
  padding: 5px;
  border-bottom: var(--v2-row-border);
  height: 30px;
  white-space: nowrap;
  font-size: 12px;
}
#djTechsTable td {
  height: 20px;
}
.djdash-score {
  text-align: center;
  font-weight: 600;
}
.djdash-loading,
.djdash-error {
  padding: 20px;
  text-align: center;
  color: #666;
}
.djdash-error {
  color: #d32f2f;
}
.djdash-today-earnings {
  background-color: #fff3cd !important;
  font-weight: 600;
}
.djdash-rating-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
}
.djdash-rating-strong-buy {
  background: #c8e6c9;
  color: #2e7d32;
}
.djdash-rating-buy,
.djdash-rating-moderate-buy {
  background: #e1f5fe;
  color: #0277bd;
}
.djdash-rating-hold {
  background: #fff9c4;
  color: #f57f17;
}
.djdash-rating-sell,
.djdash-rating-strong-sell {
  background: #ffcdd2;
  color: #c62828;
}
@media only screen and (max-width: 900px) {
  .djdash-grid {
    display: block;
  }
}
