/* ============================================================
   WC Shipment Tracker – Frontend Styles
   ============================================================ */

/* ----- Public tracking shortcode ----- */
.wcst-public-tracking {
	max-width: 720px;
}

.wcst-notice {
	padding: 12px 16px;
	border-radius: 4px;
	margin-bottom: 20px;
}

.wcst-notice--error {
	background: #fdf2f2;
	border-left: 4px solid #e53935;
	color: #b71c1c;
}

.wcst-notice--info {
	background: #e8f4fd;
	border-left: 4px solid #1e88e5;
	color: #1565c0;
}

.wcst-results__order {
	margin-bottom: 16px;
	font-size: 15px;
}

.wcst-lookup-again {
	margin-top: 20px;
	font-size: 14px;
}

/* ----- Lookup form ----- */
.wcst-lookup-form__intro {
	margin-bottom: 16px;
	color: #555;
}

.wcst-form .form-row {
	margin-bottom: 14px;
}

.wcst-form label {
	display: block;
	font-weight: 600;
	margin-bottom: 5px;
	font-size: 14px;
}

.wcst-form .input-text {
	width: 100%;
	max-width: 400px;
	box-sizing: border-box;
}

/* ----- Tracking number + copy button row ----- */
.wcst-number-row {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.wcst-copy-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	padding: 2px;
	cursor: pointer;
	color: #aaa;
	border-radius: 3px;
	line-height: 1;
	transition: color 0.15s, background 0.15s;
}

.wcst-copy-btn:hover {
	color: #555;
	background: rgba( 0, 0, 0, 0.06 );
}

.wcst-copy-btn .wcst-icon-check {
	display: none;
}

.wcst-copy-btn--copied .wcst-icon-copy {
	display: none;
}

.wcst-copy-btn--copied .wcst-icon-check {
	display: block;
	color: #4caf50;
}
