/* Integrated Bid Table - White Background */
.ace-bid-table-integrated {
	background: #fff !important;
}
/* Modern Button Grid Styles - Moved from inline CSS */

/* Grid Container - Base layout */
.auction-bid-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
	gap: 12px;
	margin: 20px 0;
	padding: 16px;
	background: #f8f9fa;
	border-radius: 8px;
	border: 1px solid #e9ecef;
}

/* Button Base Styles - Static properties */
.auction-bid-grid button {
	/* Layout and interaction - static */
	border: 2px solid transparent;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.2s ease;
	font-weight: 600;
	text-align: center;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	min-height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	outline: none;
	position: relative;
	
	/* Default colors - will be overridden by dynamic CSS when user customizes */
	background: #f5f7fa;
	color: #222;
	font-size: 16px;
	padding: 8px 16px;
}

/* Button Hover Effects - Default (overridden by dynamic CSS) */
.auction-bid-grid button:hover,
.auction-bid-grid button:focus {
	background: #0073aa;
	color: #fff;
	border-color: #0073aa;
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
	transform: translateY(-2px);
	z-index: 1;
}

.auction-bid-grid button:active {
	background: #005177;
	color: #fff;
	border-color: #005177;
	transform: translateY(0);
}

.auction-bid-grid button.selected,
.auction-bid-grid button[aria-pressed="true"] {
	background: #46b450;
	color: #fff;
	border-color: #398a36;
	box-shadow: 0 2px 8px rgba(70,180,80,0.10);
}

.auction-bid-grid button:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	background: #e9e9e9;
	color: #888;
	border-color: #ddd;
	transform: none;
}

/* Responsive Design - Static breakpoints */
@media (max-width: 768px) {
	.auction-bid-grid {
		grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
		gap: 10px;
		padding: 12px;
	}
	
	.auction-bid-grid button {
		font-size: 14px;
		min-height: 40px;
	}
}

@media (max-width: 480px) {
	.auction-bid-grid {
		grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
		gap: 8px;
	}
}