.lokale-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  margin-bottom: 2em;
}
.lokale-table th,
.lokale-table td {
  border: 1px solid #e3e3e3;
  padding: 8px 6px;
  text-align: left;
}
.lokale-table th {
  background: #f9f9f9;
  font-weight: bold;
}
.lokale-table tr:nth-child(even) {
  background: #fafbfc;
}
.lokale-table a {
  color: #2271b1;
  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: 1px solid #e3e3e3;
    border-radius: 10px;
    background: #f8fafc;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    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: #555;
    margin-right: 12px;
    font-size: 14px;
    min-width: 80px;
    text-align: left;
  }
}

.ll-front-btn {
  display: inline-block;
  padding: 8px 16px;
  margin: 2px 0;
  background: #2b6cb0;
  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: #204a70;
}
