/* Stiluri de la scrolul de si pentru tabel */
.lockcar-table-scroll::-webkit-scrollbar {
  height: 10px;
  background: #f8f9fa;
  border-radius: 10px;
}

.lockcar-table-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #29628a, #3a7ca5);
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.lockcar-table-scroll::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(45deg, #1e4a6a, #2b5f82);
}

/* Efect de sclipire */
.lockcar-table-scroll::-webkit-scrollbar-thumb {
  position: relative;
  overflow: hidden;
}

.lockcar-table-scroll::-webkit-scrollbar-thumb::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: scrollShine 3s infinite;
}

@keyframes scrollShine {
  100% {
    left: 200%;
  }
}

.lockcar-table-scroll {
  width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y;
  font-size: 0.85em;
}

/* Stiluri pentru tabel */
.woocommerce-Tabs-panel table.lockcar-comparison-table {
  width: 100%;
  display: table;
  border-collapse: collapse;
background: #29628a94;
}

.lockcar-comparison-table th,
.lockcar-comparison-table td {
  border: 1px solid #dddddd47;
  padding: 7px;
  text-align: center;
  white-space: nowrap;
}

.lockcar-comparison-table th:nth-child(2),
.lockcar-comparison-table td:nth-child(2) {
  text-align: left;
}

.lockcar-comparison-table thead {
  background: #29628a;
  font-weight: 600;
}

/* CSS doar pentru mobile */
@media (max-width: 768px) {
  .lockcar-table-inner {
    max-width: 100%;
    margin-bottom: 20px;
  }
  
  /* Asigura ca imaginile de deasupra tabelului nu sunt afectate */
  .lockcar-table-inner p:first-child {
    white-space: normal;
  }
}

/* pana aici  scrol pentru tabelul din descrierea produsului Containerul principal al tabelului */