/* TradingBeatAI - Estilos globales */
.App {
  min-height: 100vh;
  background-color: #0d1117;
  color: #c9d1d9;
}

/* Estilos para los scrollbars */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #0d1117;
}

::-webkit-scrollbar-thumb {
  background: #30363d;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #8b949e;
}

/* Clases de utilidad */
.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

/* Estilos para los textos */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  color: #c9d1d9;
}

/* Estilos para los gráficos ApexCharts */
.apexcharts-tooltip {
  background: #161b22 !important;
  color: #c9d1d9 !important;
  border: 1px solid #30363d !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3) !important;
  border-radius: 8px !important;
}

.apexcharts-tooltip-title {
  background: #0d1117 !important;
  border-bottom: 1px solid #30363d !important;
  color: #8b949e !important;
}

.apexcharts-xaxistooltip {
  background: #161b22 !important;
  border: 1px solid #30363d !important;
  color: #c9d1d9 !important;
}

.apexcharts-yaxistooltip {
  background: #161b22 !important;
  border: 1px solid #30363d !important;
  color: #c9d1d9 !important;
}

/* Leyenda de gráficos */
.apexcharts-legend-text {
  color: #8b949e !important;
}

/* Grid de gráficos */
.apexcharts-gridline {
  stroke: #30363d !important;
}

/* Ejes */
.apexcharts-xaxis-label, 
.apexcharts-yaxis-label {
  fill: #8b949e !important;
}

/* Selección de rango */
::selection {
  background: rgba(99, 102, 241, 0.3);
  color: #c9d1d9;
}
