.my-auctions-wrapper { font-family: "Helvetica", sans-serif; }
.auction-tabs { display:flex; list-style:none; margin-bottom:20px; padding-left:0; border-bottom:1px solid #ddd; }
.auction-tabs .tab { padding:10px 20px; cursor:pointer; border:1px solid #ddd; border-bottom:none; background:#f9f9f9; margin-right:5px; border-radius:5px 5px 0 0; }
.auction-tabs .tab.active { background:#fff; font-weight:bold; }
.auction-item { border:1px solid #eee; padding:15px; margin-bottom:10px; border-radius:5px; background:#fff; }
.badge { display:inline-block; padding:2px 8px; border-radius:4px; color:#fff; font-size:12px; margin-bottom:5px; }
.badge.active { background:#3498db; }
.badge.won { background:#2ecc71; }
.badge.lost { background:#e74c3c; }
.rebid-btn { display:inline-block; margin-top:10px; background:#3498db; color:#fff; padding:5px 10px; border-radius:4px; text-decoration:none; }
.rebid-btn:hover { background:#2980b9; }
.rebid-amount {
    width: 100px;
    padding: 5px;
    margin-left: 10px;
}
#pdma-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #3498db;
    color: #fff;
    padding: 12px 20px;
    border-radius: 5px;
    z-index: 9999;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    font-size: 14px;
}
#pdma-notification.success { background: #2ecc71; }
#pdma-notification.error { background: #e74c3c; }
.my-auctions-wrapper {
  max-width: 900px;
  margin: auto;
}

.auction-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  list-style: none;
  padding: 0;
}

.auction-tabs .tab {
  padding: 8px 18px;
  border-radius: 20px;
  cursor: pointer;
  background: #eee;
  font-weight: 500;
}

.auction-tabs .tab.active {
  background: #4a8fe7;
  color: #fff;
}

.tab-content { display: none; }
.tab-content.active { display: block; }

.auction-item {
  display: flex;
  gap: 15px;
  background: #fff;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,.05);
}

.auction-thumb img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 6px;
}

.auction-info h4 {
  margin: 6px 0;
}

.badge {
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-block;
}

.badge.active { background: #4a8fe7; color: #fff; }
.badge.won { background: #2ecc71; color: #fff; }
.badge.lost { background: #e74c3c; color: #fff; }

.rebid-box {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.rebid-box input {
  width: 140px;
  padding: 6px;
}

.rebid-box button {
  background: #4a8fe7;
  color: #fff;
  border: 0;
  padding: 6px 16px;
  border-radius: 4px;
  cursor: pointer;
}

.rebid-box button:disabled {
  opacity: .5;
  cursor: not-allowed;
}
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}