body{
  overflow-x: hidden;
}
.withdraw-history-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  color: #fff;
  text-align: center;
}
.withdraw-history-container h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.withdraw-history-container table {
  width: 100%;
  border-collapse: collapse;
  background-color: rgba(0,0,0,0.3);
  border-radius: 25px;
  overflow: hidden;
  border: none;
}
.withdraw-history-container th,
.withdraw-history-container td {
  padding: 20px 15px;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  border: none;
}
.withdraw-history-container th {
  text-transform: uppercase;
  font-size: 1.05rem;
  font-weight: 700;
  background-color: rgba(255,255,255,0.02);
}
.withdraw-history-container td {
  background-color: rgba(255,255,255,0.01);
}
.withdraw-history-container tr:hover td {
  background-color: rgba(255,255,255,0.05);
}
.desktop-only {
  display: table-cell;
}
.mobile-only {
  display: none;
}
.details-link {
  color: #00bfff;
  text-decoration: none;
}
.details-link:hover {
  text-decoration: underline;
}
.status-active {
  color: #13dc13;
}
.status-vip {
  color: gold;
}
.status-inactive {
  color: red;
}
.pink-icon {
  display: inline-block;
  background: #ff66c4;
  color: #fff;
  font-size: 12px;
  width: 14px;
  height: 14px;
  line-height: 14px;
  text-align: center;
  border-radius: 50%;
  margin-left: 4px;
  cursor: pointer;
  position: relative;
  top: -5px;
}
.custom-tooltip {
  position: fixed;
  background: rgba(0, 0, 0, 0.96);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  pointer-events: none;
  font-size: 14px;
  max-width: 200px;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 9999;
  display: none;
}
#ref-id {
  text-decoration: none;
  color: white;
}
@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: table-cell;
  }
  .withdraw-history-container h2 {
    font-size: 1.3rem;
  }
  .withdraw-history-container th,
  .withdraw-history-container td {
    font-size: 0.9rem;
    padding: 8px;
    padding-top: 20px;
  }
}
@media (max-width: 576px) {
  .withdraw-history-container h2 {
    font-size: 1.1rem;
  }
  .withdraw-history-container th,
  .withdraw-history-container td {
    font-size: 0.8rem;
    margin-top: 20px;
    padding-bottom: 10px;
  }
}
