.lokale-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-bottom: 2em;
    background: #fff;
  color: #000;

}
.lokale-table th,
.lokale-table td {
 border: 1px solid #000;
  padding: 8px 6px;
  text-align: left;
}
.lokale-table th {
 background: #fff;
  background: #fff;
  color: #000;
  font-weight: bold;
}

.lokale-table a {
color: #000;
  text-decoration: underline;
}

/* Nie łam w kolumnach z cenami (desktop + mobile) */
.lokale-table td:nth-child(5),
.lokale-table td:nth-child(6),
.lokale-table td .nowrap {
  white-space: nowrap;
}

/* Mobile: zamiana na karty */
@media (max-width: 800px) {
  .lokale-table,
  .lokale-table thead,
  .lokale-table tbody,
  .lokale-table tr {
    display: block;
    width: 100%;
  }
  .lokale-table thead {
    display: none;
  }
  .lokale-table tr {
    margin-bottom: 18px;
   
    border-radius: 10px;
 background: #fff;
    border: 1px solid #000;
    box-shadow: none;
    padding: 10px 0 10px 0;
  }
  .lokale-table td {
    display: flex;
    align-items: center;
    padding: 8px 10px;
    border: none;
    font-size: 15px;
    width: 100%;
    box-sizing: border-box;
    gap: 8px;
  }
  .lokale-table td:before {
    content: attr(data-label) ': ';
    flex: 0 0 120px;
    font-weight: bold;
    color: #000;
    margin-right: 12px;
    font-size: 14px;
    min-width: 80px;
    text-align: left;
  }
  .lokale-table { border: 0; }
}

.ll-front-btn {
  display: inline-block;
  padding: 8px 8px;
  margin: 2px 0;
 background: #000;
  color: #fff !important;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  text-align: center;
  text-decoration: none !important;
  cursor: pointer;
  transition: background 0.2s;
}
.ll-front-btn:disabled,
.ll-front-btn[disabled] {
  background: #cccccc;
  color: #999 !important;
  cursor: not-allowed;
}
.ll-front-btn:hover:not(:disabled) {
  background: #222;
}
