/**
 * SquareWooSync Pro - Gift Card Balance Styles
 * Deliberately plain so themes can restyle without fighting specificity.
 */

/* Card list */
.sws-gift-cards-list {
	list-style: none;
	margin: 16px 0;
	padding: 0;
}

.sws-gift-cards-list .sws-gift-card {
	align-items: baseline;
	border: 1px solid #e5e7eb;
	display: flex;
	gap: 12px;
	justify-content: space-between;
	margin-bottom: 8px;
	padding: 12px 16px;
}

.sws-gift-card-balance {
	color: #2563eb;
	font-weight: 600;
}

.sws-gift-card-code {
	color: #6b7280;
}

.sws-gift-card-code code {
	background: none;
	font-family: monospace;
	font-size: 1em;
	letter-spacing: 0.04em;
	padding: 0;
	-webkit-user-select: all;
	user-select: all;
}

/* No-JS reveal: masked until the customer opens it. */
.sws-gift-card-code-reveal > summary {
	cursor: pointer;
	list-style: none;
}

.sws-gift-card-code-reveal > summary::-webkit-details-marker {
	display: none;
}

.sws-gift-card-code-masked {
	font-family: monospace;
	letter-spacing: 0.04em;
}

.sws-gift-card-code-toggle {
	font-size: 0.85em;
	text-decoration: underline;
}

.sws-gift-card-code-reveal[open] > summary .sws-gift-card-code-masked {
	display: none;
}

.sws-gift-card-code-reveal[open] > summary .sws-gift-card-code-toggle {
	display: none;
}

/* Combined total */
.sws-gift-cards-total {
	border: 1px solid #e5e7eb;
	margin: 16px 0;
	padding: 16px;
}

.sws-gift-card-total-label {
	color: #6b7280;
}

.sws-gift-card-total-value {
	color: #2563eb;
	font-size: 20px;
	font-weight: bold;
}

/* Spent or deactivated cards stay listed, but read as inactive. */
.sws-gift-card-spent,
.sws-gift-card-inactive {
	opacity: 0.6;
}

.sws-gift-card-spent .sws-gift-card-balance,
.sws-gift-card-inactive .sws-gift-card-balance {
	color: #6b7280;
}

/* Table (My Account tab) */
.sws-gift-cards-table {
	margin: 16px 0;
	width: 100%;
}

.sws-gift-cards-table th {
	text-align: left;
}

.sws-gift-cards-table .sws-gift-card-state {
	color: #6b7280;
}

/* Empty + logged-out states */
.sws-gift-cards-empty p,
.sws-gift-cards-login-prompt p {
	color: #6b7280;
}
