/* ===== WRAPPER ===== */
.mp-mt-wrap {
  width: 100%;
}

/* ===== SCROLL + RAMKA ===== */
.mp-mt-table-scroll {
  overflow: auto;
  border: 1px solid #1e1e1e;
  border-radius: 0px;
  background: #121212;
}

/* ===== TABELA ===== */
.mp-mt-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 820px;
  background: #121212;
  color: #fff;
}

/* ===== HEADER ===== */
.mp-mt-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #000;
  color: #fff;
  text-align: left;
  padding: 14px 12px;
  border-bottom: 1px solid #1e1e1e;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}

/* ===== BODY ===== */
.mp-mt-table td {
  padding: 14px 12px;
  border-bottom: 1px solid #1e1e1e;
  vertical-align: middle;
}

/* co drugi rząd */
.mp-mt-table tbody tr:nth-child(even) td {
  background: #242424;
}

/* hover wiersza – TYLKO KOLOR */
.mp-mt-table tbody tr:hover td {
  background: #2e2e2e;
}

/* ===== SORT ARROWS ===== */
.mp-mt-table thead th.is-sorted-asc::after {
  content: " ↑";
  opacity: .6;
}
.mp-mt-table thead th.is-sorted-desc::after {
  content: " ↓";
  opacity: .6;
}

/* ===== STATUS BADGE ===== */
.mp-mt-badge {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 0px;
  font-size: 13px;
  line-height: 1;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
}

/* ===== BUTTONS – STABILNE (bez skoków) ===== */
.mp-mt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 0px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;

  /* KLUCZ: brak zmiany rozmiaru */
  border: 1px solid transparent;
  box-sizing: border-box;

  transition:
    background-color .15s ease,
    color .15s ease,
    border-color .15s ease,
    opacity .15s ease;
}

/* primary */
.mp-mt-btn-primary {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.mp-mt-btn-primary:hover {
  background: #eaeaea;
  border-color: #eaeaea;
}

/* outline */
.mp-mt-btn-outline {
  background: transparent;
  color: #fff;
  border-color: #3a3a3a;
}

.mp-mt-btn-outline:hover {
  background: #1e1e1e;
  border-color: #5a5a5a;
}

/* ===== PRICE ===== */
.mp-mt-price {
  font-weight: 600;
}

/* ===== STATUS ROW COLORS ===== */
.mp-mt-status-dostepne .mp-mt-badge {
  background: rgba(0, 200, 120, .18);
  border-color: rgba(0, 200, 120, .35);
}

.mp-mt-status-rezerwacja .mp-mt-badge {
  background: rgba(255, 185, 0, .18);
  border-color: rgba(255, 185, 0, .35);
}

.mp-mt-status-sprzedane .mp-mt-badge {
  background: rgba(255, 80, 80, .18);
  border-color: rgba(255, 80, 80, .35);
}

/* hover statusowy – subtelny */
.mp-mt-status-dostepne:hover td {
  background: rgba(0, 200, 120, .08);
}
.mp-mt-status-rezerwacja:hover td {
  background: rgba(255, 185, 0, .08);
}
.mp-mt-status-sprzedane:hover td {
  background: rgba(255, 80, 80, .08);
}

/* ===== EMPTY ===== */
.mp-mt-empty {
  padding: 16px;
  border: 1px solid #1e1e1e;
  border-radius: 0px;
  background: #121212;
  color: #fff;
}


/* ===== TABELA PIONOWA (SINGLE) ===== */
.mp-mt-table-vertical {
  min-width: 0;
}

.mp-mt-table-vertical th {
  width: 38%;
  background: #0b0b0b;
  color: #fff;
  padding: 14px 12px;
  border-bottom: 1px solid #1e1e1e;
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
}

.mp-mt-table-vertical td {
  padding: 14px 12px;
  border-bottom: 1px solid #1e1e1e;
}

.mp-mt-single .mp-mt-table tbody tr:nth-child(even) td,
.mp-mt-single .mp-mt-table tbody tr:nth-child(even) th {
  background: #242424;
}

.mp-mt-single .mp-mt-table tbody tr:hover td,
.mp-mt-single .mp-mt-table tbody tr:hover th {
  background: #2e2e2e;
}

/* tabela */
.mp-mt-btn{
	font-size:14px !important;
	font-weight: 400 !important;
	line-height:1.2 !important;
	color:#dfc786 !important
}

.mp-mt-btn:hover{
	background-color: #000 !important;
}

.mp-mt-btn.mp-mt-btn-primary{
	background-color: #d9baa04f;
	border-color:#dfc786 !important;
}

.mp-mt-table{
	margin-bottom:0;
}