/* ⭐ Premium Status Filter Buttons */
.status-filter-btn {
  border-radius: 20px;
  padding: 6px 14px;
  border: 1px solid #c7c7c7;
  background: #f8f9fa;
  color: #333;
  font-weight: 500;
  transition: 0.25s ease;
}

.status-filter-btn:hover {
  background: #e2e6ea;
  transform: translateY(-1px);
}

.status-filter-btn.active-filter {
  background: #0052cc !important;
  color: #fff !important;
  border-color: #0041a8;
  box-shadow: 0 2px 5px rgba(0, 82, 204, 0.4);
}

/* ⭐ Premium Status Badge */
.premium-status-badge {
  padding: 5px 12px;
  border-radius: 18px;
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.2px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.18);
}

.premium-status-badge .icon {
  font-size: 14px;
}


.premium-modal {
  border-radius: 14px;
  border: none;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,0.2);
}

.premium-modal-backdrop {
  background: rgba(0,0,0,0.35);
  position: fixed;
  inset: 0;
  z-index: 2000;
}

.premium-header {
  background: #1a73e8;
  color: white;
  padding: 15px 20px;
}

.premium-body {
  padding: 25px;
  background: #fafafa;
}

.premium-section {
  background: white;
  padding: 18px;
  border-radius: 10px;
  border: 1px solid #eee;
}

.section-title {
  font-size: 17px;
  margin-bottom: 10px;
  font-weight: 600;
}

.info-row {
  font-size: 14px;
  margin: 6px 0;
}

.premium-status {
  padding: 4px 10px;
  border-radius: 6px;
  color: white;
  font-weight: 600;
}

.amount-tag {
  background: #e8f0fe;
  padding: 3px 8px;
  border-radius: 6px;
}

.payment-card {
  background: #ffffff;
  border: 1px solid #ddd;
  padding: 10px 12px;
  border-radius: 8px;
  margin-top: 10px;
}


.table-responsive-custom {
  width: 100%;
  overflow-x: auto;
}

.table-responsive-custom .rdt_Table {
  min-width: 1200px; /* adjust based on content */
}
.sc-fVHBlr.kOdnNV{
  min-height: 300px
}


.modal-backdrop-custom {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1050;
}

.modal-custom {
  position: fixed;
  inset: 0;
  z-index: 1060;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content-custom {
  background: #fff;
  border-radius: 8px;
  width: 100%;
  max-width: 500px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.close-btn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

