/* SS Activewear Matrix Table - Matching SS Activewear UI */

/* Color Swatches - Rectangular blocks with labels */
.ss-swatch {
	width: 60px !important;
	height: 40px !important;
	border-radius: 3px !important;
	border: 2px solid #ddd !important;
	overflow: visible !important;
}

.ss-swatch:hover {
	border-color: #333 !important;
	transform: translateY(-2px) !important;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
}

.ss-swatch.selected {
	border-color: #000 !important;
	border-width: 3px !important;
	box-shadow: 0 0 0 1px #000 !important;
}

.ss-swatch-label {
	position: absolute;
	bottom: -18px;
	left: 0;
	right: 0;
	font-size: 9px;
	text-align: center;
	font-weight: 500;
	color: #333;
	text-transform: uppercase;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* Matrix Table - ROWS = Warehouses, COLUMNS = Sizes */
.ss-matrix-table {
	font-size: 13px !important;
}

.ss-matrix-table th {
	padding: 10px 8px !important;
	background: #f5f5f5 !important;
	border: 1px solid #ddd !important;
	font-size: 12px !important;
	color: #333 !important;
}

.ss-matrix-table th:first-child {
	min-width: 180px !important;
}

.ss-matrix-table td {
	padding: 8px !important;
	border: 1px solid #ddd !important;
}

.ss-matrix-table td:first-child {
	background: #fafafa !important;
}

.ss-matrix-table .warehouse-name {
	font-weight: 600;
	color: #333;
	font-size: 13px;
}

.ss-matrix-table .warehouse-location {
	font-size: 11px;
	color: #666;
	display: block;
	margin-top: 2px;
}

.ss-matrix-table .stock-qty {
	display: block;
	font-size: 12px;
	color: #666;
	margin-bottom: 4px;
}

.ss-matrix-table .qty-input {
	width: 60px !important;
	padding: 4px 6px !important;
	border: 1px solid #ccc !important;
	border-radius: 3px !important;
	font-size: 13px !important;
}

.ss-matrix-table .zero-stock {
	background: #f9f9f9 !important;
	color: #999 !important;
}

