body {
  background: #f8f9fa;
  font-family: 'Poppins', sans-serif;
}

.main-content {
  margin-left: 290px;
  padding: 30px;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

.header-page {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.btn-tambah {
  background-color: #198754;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  position: relative;
  z-index: 10;
}

.btn-tambah:hover {
  background-color: #146c43;
}

.card-info {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.table-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card-meja {
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  background: #fff;
  transition: all 0.2s ease-in-out;
  height: 100%;
}

.card-meja:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.status {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: capitalize;
}

.status.kosong {
  background: #d1f8d1;
  color: #007d00;
}

.status.terisi {
  background: #ffd6d6;
  color: #b30000;
}

.status.menunggu_pembayaran {
  background: #fff4d1;
  color: #c28a00;
}

.status.selesai {
  background: #d6ebff;
  color: #0059b3;
}


.modal {
  z-index: 2000 !important;
}

.modal-backdrop {
  z-index: 1999 !important;
}

.modal-content {
  border-radius: 10px;
  overflow: hidden;
}

.text-truncate {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.modal {
  position: fixed !important;
  z-index: 1055 !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal-backdrop {
  z-index: 1050 !important;
  background-color: rgba(0, 0, 0, 0.5) !important;
}

.main-content {
  position: relative;
  z-index: auto;
}

