/* Tabla Conciertos Alterkado (sin bordes) */
:root{ --text:#111111; --muted:#555555; --border:#e5e5e5; --blue:#007BBD; --blue-dark:#006aa6; }
.conciertos-table{ width:100%; border-collapse:collapse; font-size:15px; color:var(--text); }
.conciertos-table thead th{ background:#f6f6f6; color:var(--text); padding:12px 14px; text-align:left; border-bottom:0; }
.conciertos-table tbody tr{ border-bottom:0; }
.conciertos-table td{ padding:12px 14px; vertical-align:middle; border:0; }
.conciertos-table th:first-child{ width:1%; }
.conciertos-table td[data-label=""]{ font-weight:700; text-align:center; }
.conciertos-table a.button{ display:inline-block; background:var(--blue); color:#fff; padding:10px 24px; text-decoration:none; font-weight:600; border-radius:8px; font-size:14px; transition:background-color .2s ease, transform .04s ease; text-align:center; }
.conciertos-table a.button:hover{ background:var(--blue-dark); }
.conciertos-table a.button:active{ transform:translateY(1px); }
@media (max-width:768px){
  .conciertos-table thead{ display:none; }
  .conciertos-table, .conciertos-table tbody, .conciertos-table tr, .conciertos-table td{ display:block; width:100%; }
  .conciertos-table tr{ margin:12px 0; border:1px solid var(--border); border-radius:10px; overflow:hidden; background:#fff; }
  .conciertos-table td{ border:none; border-bottom:1px solid var(--border); text-align:right; padding:12px 14px; }
  .conciertos-table td:last-child{ border-bottom:none; }
  .conciertos-table td::before{ content:attr(data-label); float:left; font-weight:700; color:var(--muted); text-transform:uppercase; letter-spacing:.3px; }
  .conciertos-table td[data-label=""]{ text-align:center; }
}