/* =========================================================
   V2 SHIFTX TABLE – ROLLERPIAC STYLE
   Ikon felül, szöveg alul, középre rendezve
========================================================= */

.table-responsive {
  margin-top: 14px !important;
  border-collapse: collapse !important;
  width: 100% !important;
  border: none !important;
}

.table-responsive td {
  width: 33.33% !important;
  padding: 10px 6px !important;
  border: none !important;
  text-align: center !important;
}

/* IKON + SZÖVEG BLOKK */
.icon-container {
  display: flex !important;
  flex-direction: column !important;   /* ⬅️ EZ A LÉNYEG */
  align-items: center !important;
  justify-content: center !important;
  gap: 8px;
}

/* IKON */
.icon-container img {
  width: 52px !important;
  height: auto !important;
  filter: drop-shadow(0 0 6px rgba(41,255,38,0.35));
  transition: transform .2s ease;
}

/* Hover animáció */
.icon-container:hover img {
  transform: translateY(-2px) scale(1.05);
}

/* SZÖVEG */
.text-container {
  font-size: 12px !important;
  line-height: 1.3 !important;
  color: #CFCFCF !important;
  margin-left: 0 !important;
  text-align: center !important;
}

/* ================= MOBILE ================= */

@media screen and (max-width: 768px) {

  .table-responsive td {
    width: 20% !important;
    padding: 8px 4px !important;
  }

  .icon-container img {
    width: 28px !important;
  }

  .text-container {
    font-size: 9px !important;
    line-height: 1.2 !important;
  }
}