/* Main container styles */
.auctions-container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Page header styles */
.page-header {
  border-bottom: 2px solid #f0f0f0;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
}

.page-header h1 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

/* Auction list styles */
.auction-list {  
  list-style: none;
  background-color:#34C759;
  padding: 0;
  margin: 0;
}

.auction-item {
  margin-bottom: 1rem;
  border-radius: 6px;
  border: 2px solid #edf2f7;
  transition: all 0.2s ease;
}

.auction-item:hover {
  border-color: #3498db;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.auction-item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem;
  color: #2c3e50;
  text-decoration: none;
}

.auction-name {
  font-weight: 600;
  font-size: 1.1rem;
}

.auction-bid {
  background-color: #edf2f7;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  font-weight: 600;
  color: #2c3e50;
  white-space: nowrap;
}

/* Empty state styling */
.empty-state {
  background-color: #f9fafb;
  border-left: 4px solid #7f8c8d;
  padding: 1.5rem;
  border-radius: 4px;
  color: #7f8c8d;
  font-size: 1.1rem;
  text-align: center;
  margin: 2rem 0;
}

/* Badge for featured or ending soon items */
.auction-badge {
  background-color: #e74c3c;
  color: white;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 10px;
  margin-left: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.ending-soon {
  background-color: #e74c3c;
}

.featured {
  background-color: #f39c12;
}

.new-auction {
  background-color: #2ecc71;
}

/* Count display */
.auction-count {
  font-size: 0.9rem;
  color: #7f8c8d;
  margin-bottom: 1.5rem;
  text-align: right;
}

/* Responsive design */
@media (max-width: 768px) {
  .auctions-container {
    padding: 0.5rem;
    margin: 0.5rem;
  }
  
  .auction-item a {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .auction-bid {
    margin-top: 0.5rem;
  }
}