/**
 * Woo Live Auctions - Admin Styles
 *
 * @package    Woo_Live_Auctions
 * @subpackage Woo_Live_Auctions/admin/assets/css
 * @since      1.0.0
 */

/* ========================================
   Admin Overview Page
   ======================================== */
.woo-auction-admin-page {
	max-width: 1200px;
}

.woo-auction-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	margin: 30px 0;
}

.woo-auction-stat-box {
	background: #ffffff;
	border: 1px solid #ccd0d4;
	border-radius: 4px;
	padding: 25px;
	text-align: center;
	box-shadow: 0 1px 1px rgba(0,0,0,0.04);
}

.woo-auction-stat-box h3 {
	font-size: 48px;
	margin: 0 0 10px 0;
	color: #3498db;
	font-weight: 700;
}

.woo-auction-stat-box p {
	margin: 0;
	color: #666;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.woo-auction-quick-links {
	background: #ffffff;
	border: 1px solid #ccd0d4;
	border-radius: 4px;
	padding: 25px;
	margin: 20px 0;
}

.woo-auction-quick-links h2 {
	margin-top: 0;
	font-size: 18px;
}

.woo-auction-quick-links .button {
	margin-right: 10px;
	margin-bottom: 10px;
}

.woo-auction-upgrade-notice {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: #ffffff;
	border-radius: 8px;
	padding: 30px;
	margin: 30px 0;
	text-align: center;
}

.woo-auction-upgrade-notice h3 {
	color: #ffffff;
	margin-top: 0;
	font-size: 24px;
}

.woo-auction-upgrade-notice p {
	font-size: 16px;
	margin-bottom: 20px;
}

.woo-auction-upgrade-notice .button-primary {
	background: #ffffff;
	color: #667eea;
	border: none;
	padding: 12px 30px;
	font-size: 16px;
	font-weight: 600;
}

.woo-auction-upgrade-notice .button-primary:hover {
	background: #f0f0f0;
	color: #667eea;
}

/* ========================================
   Product Edit Page
   ======================================== */
#auction_product_data .options_group {
	padding: 15px 20px;
	border-bottom: 1px solid #eee;
}

#auction_product_data .options_group:last-child {
	border-bottom: none;
}

#auction_product_data h3 {
	margin-top: 0;
	margin-bottom: 15px;
	font-size: 16px;
	color: #333;
	border-bottom: 2px solid #3498db;
	padding-bottom: 8px;
}

.woo-auction-datetime-picker {
	width: 100%;
}

.woo-auction-help-text {
	background: #f0f8ff;
	border-left: 4px solid #3498db;
	padding: 15px;
	margin-top: 15px;
	font-size: 13px;
	line-height: 1.6;
}

.woo-auction-help-text strong {
	display: block;
	margin-bottom: 5px;
	color: #3498db;
}

/* ========================================
   Product List Columns
   ======================================== */
.woo-auction-status {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 3px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
}

.woo-auction-status.live {
	background: #d4edda;
	color: #155724;
}

.woo-auction-status.future {
	background: #d1ecf1;
	color: #0c5460;
}

.woo-auction-status.ended {
	background: #e2e3e5;
	color: #383d41;
}

/* ========================================
   Settings Page
   ======================================== */
.woocommerce table.form-table {
	margin-top: 0;
}

.woocommerce table.form-table th {
	padding-left: 0;
}

/* ========================================
   Date Picker Styling
   ======================================== */
.ui-datepicker {
	z-index: 99999 !important;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 768px) {
	.woo-auction-stats {
		grid-template-columns: 1fr;
	}

	.woo-auction-stat-box h3 {
		font-size: 36px;
	}

	.woo-auction-quick-links .button {
		display: block;
		width: 100%;
		margin-right: 0;
		text-align: center;
	}
}
