/* Estilos para contenedores separados */
.simple-stats-container {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin-bottom: 16px;
   box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.simple-commits-container {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.section-title {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-align: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Estilos para lista simple de commits */
.simple-commits-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* SELECTORES ESPECÍFICOS CON MÁXIMA PRIORIDAD - SOLO PARA ESTA SECCIÓN */
.simple-stats-container .stat-icon i,
.simple-commits-container .stat-icon i,
.stats-list .stat-icon i,
.framework-stats .stat-icon i,
.simple-stats-container .simple-commit-icon i,
.simple-commits-container .simple-commit-icon i,
.commits-progress-list .simple-commit-icon i {
  color: #000000 !important;
  font-size: 16px !important;
  fill: #000000 !important;
  width: 16px !important;
  height: 16px !important;
}

.simple-stats-container .stat-icon i,
.simple-commits-container .stat-icon i,
.stats-list .stat-icon i,
.framework-stats .stat-icon i {
  font-size: 16px !important;
  width: 16px !important;
  height: 16px !important;
}

.simple-commits-container .simple-commit-icon i,
.commits-progress-list .simple-commit-icon i {
  font-size: 16px !important;
  width: 16px !important;
  height: 16px !important;
}

/* SELECTOR ESPECÍFICO PARA ESTA SECCIÓN - NO GLOBAL */
#stats-section [data-lucide],
#commits-section [data-lucide],
.simple-stats-container [data-lucide],
.simple-commits-container [data-lucide],
.stats-list [data-lucide],
.framework-stats [data-lucide],
.commits-progress-list [data-lucide] {
  color: #000000 !important;
  fill: #000000 !important;
}

#stats-section .stat-icon [data-lucide],
#commits-section .stat-icon [data-lucide],
.simple-stats-container .stat-icon [data-lucide],
.simple-commits-container .stat-icon [data-lucide],
.stats-list .stat-icon [data-lucide],
.framework-stats .stat-icon [data-lucide] {
  width: 16px !important;
  height: 16px !important;
  font-size: 16px !important;
}

#commits-section .simple-commit-icon [data-lucide],
.simple-commits-container .simple-commit-icon [data-lucide],
.commits-progress-list .simple-commit-icon [data-lucide] {
  width: 16px !important;
  height: 16px !important;
  font-size: 16px !important;
}

.simple-commit-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.simple-commit-item:last-child {
  border-bottom: none;
}

.simple-commit-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.simple-commit-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #09A7D3, #00d4ff);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.simple-commit-details {
  flex: 1;
}

.simple-commit-message {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 4px;
  line-height: 1.3;
}

.simple-commit-author {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}

.simple-commit-meta {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.48rem;
  font-weight: 400;
}

.commit-type {
  color: rgba(0, 212, 255, 0.6);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.commit-full-date {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.7rem;
}

.simple-commit-percentage {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #00d4ff;
  font-weight: 600;
  font-size: 0.9rem;
}

.percentage-value {
  color: #00d4ff;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Clases dinámicas para porcentajes */
.percentage-0 { width: 0% !important; }
.percentage-1 { width: 1% !important; }
.percentage-2 { width: 2% !important; }
.percentage-3 { width: 3% !important; }
.percentage-4 { width: 4% !important; }
.percentage-5 { width: 5% !important; }
.percentage-6 { width: 6% !important; }
.percentage-7 { width: 7% !important; }
.percentage-8 { width: 8% !important; }
.percentage-9 { width: 9% !important; }
.percentage-10 { width: 10% !important; }
.percentage-11 { width: 11% !important; }
.percentage-12 { width: 12% !important; }
.percentage-13 { width: 13% !important; }
.percentage-14 { width: 14% !important; }
.percentage-15 { width: 15% !important; }
.percentage-16 { width: 16% !important; }
.percentage-17 { width: 17% !important; }
.percentage-18 { width: 18% !important; }
.percentage-19 { width: 19% !important; }
.percentage-20 { width: 20% !important; }
.percentage-21 { width: 21% !important; }
.percentage-22 { width: 22% !important; }
.percentage-23 { width: 23% !important; }
.percentage-24 { width: 24% !important; }
.percentage-25 { width: 25% !important; }
.percentage-26 { width: 26% !important; }
.percentage-27 { width: 27% !important; }
.percentage-28 { width: 28% !important; }
.percentage-29 { width: 29% !important; }
.percentage-30 { width: 30% !important; }
.percentage-31 { width: 31% !important; }
.percentage-32 { width: 32% !important; }
.percentage-33 { width: 33% !important; }
.percentage-34 { width: 34% !important; }
.percentage-35 { width: 35% !important; }
.percentage-36 { width: 36% !important; }
.percentage-37 { width: 37% !important; }
.percentage-38 { width: 38% !important; }
.percentage-39 { width: 39% !important; }
.percentage-40 { width: 40% !important; }
.percentage-41 { width: 41% !important; }
.percentage-42 { width: 42% !important; }
.percentage-43 { width: 43% !important; }
.percentage-44 { width: 44% !important; }
.percentage-45 { width: 45% !important; }
.percentage-46 { width: 46% !important; }
.percentage-47 { width: 47% !important; }
.percentage-48 { width: 48% !important; }
.percentage-49 { width: 49% !important; }
.percentage-50 { width: 50% !important; }
.percentage-51 { width: 51% !important; }
.percentage-52 { width: 52% !important; }
.percentage-53 { width: 53% !important; }
.percentage-54 { width: 54% !important; }
.percentage-55 { width: 55% !important; }
.percentage-56 { width: 56% !important; }
.percentage-57 { width: 57% !important; }
.percentage-58 { width: 58% !important; }
.percentage-59 { width: 59% !important; }
.percentage-60 { width: 60% !important; }
.percentage-61 { width: 61% !important; }
.percentage-62 { width: 62% !important; }
.percentage-63 { width: 63% !important; }
.percentage-64 { width: 64% !important; }
.percentage-65 { width: 65% !important; }
.percentage-66 { width: 66% !important; }
.percentage-67 { width: 67% !important; }
.percentage-68 { width: 68% !important; }
.percentage-69 { width: 69% !important; }
.percentage-70 { width: 70% !important; }
.percentage-71 { width: 71% !important; }
.percentage-72 { width: 72% !important; }
.percentage-73 { width: 73% !important; }
.percentage-74 { width: 74% !important; }
.percentage-75 { width: 75% !important; }
.percentage-76 { width: 76% !important; }
.percentage-77 { width: 77% !important; }
.percentage-78 { width: 78% !important; }
.percentage-79 { width: 79% !important; }
.percentage-80 { width: 80% !important; }
.percentage-81 { width: 81% !important; }
.percentage-82 { width: 82% !important; }
.percentage-83 { width: 83% !important; }
.percentage-84 { width: 84% !important; }
.percentage-85 { width: 85% !important; }
.percentage-86 { width: 86% !important; }
.percentage-87 { width: 87% !important; }
.percentage-88 { width: 88% !important; }
.percentage-89 { width: 89% !important; }
.percentage-90 { width: 90% !important; }
.percentage-91 { width: 91% !important; }
.percentage-92 { width: 92% !important; }
.percentage-93 { width: 93% !important; }
.percentage-94 { width: 94% !important; }
.percentage-95 { width: 95% !important; }
.percentage-96 { width: 96% !important; }
.percentage-97 { width: 97% !important; }
.percentage-98 { width: 98% !important; }
.percentage-99 { width: 99% !important; }
.percentage-100 { width: 100% !important; }

.simple-percentage-bar {
  width: 60px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.simple-percentage-fill {
  height: 100%;
  background: linear-gradient(90deg, #09A7D3, #00d4ff);
  border-radius: 2px;
  transition: width 0.3s ease;
}

/* Estilos para sección de estadísticas */
.simple-stats-section {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-title {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-align: center;
}

.stats-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  border-radius: 0;
  transition: none;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 0;
}

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

.stat-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.stat-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #09A7D3, #00d4ff);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
}

.stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.stat-value {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 500;
  text-align: right;
}

@media (max-width: 1023px) {
  .grid.lg\:grid-cols-2 {
    grid-template-columns: 1fr !important;
  }
  
  .items-start {
    align-items: stretch !important;
  }
}

@media (min-width: 1024px) {
  .grid.lg\:grid-cols-2 {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 768px) {
  .simple-commit-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .simple-commit-percentage {
    align-self: flex-end;
  }
}
