.pca-form { max-width: 420px; }
.pca-form p { margin-bottom: 14px; }
.pca-form label { display: block; font-weight: 600; margin-bottom: 4px; }
.pca-form input[type="text"],
.pca-form input[type="password"],
.pca-form input[type="email"],
.pca-form input[type="date"],
.pca-form select {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
}
.pca-form button {
	background: #1565c0;
	color: #fff;
	border: none;
	border-radius: 20px;
	padding: 10px 28px;
	font-weight: 700;
	letter-spacing: .03em;
	cursor: pointer;
}
.pca-form button:hover { background: #0d47a1; }
.pca-links { font-size: 0.9em; }
.pca-notice { padding: 10px 14px; border-radius: 4px; margin-bottom: 16px; }
.pca-notice-error { background: #fdecea; color: #611a15; border: 1px solid #f5c6cb; }
.pca-notice-success { background: #eaf6ec; color: #1e4620; border: 1px solid #c3e6cb; }
.pca-info { background: #e7f3fb; border-left: 4px solid #1565c0; padding: 12px 16px; margin-bottom: 20px; }
.pca-steps { margin-bottom: 16px; color: #555; }
.pca-text-muted { color: #666; font-size: 0.9em; }

/* Dashboard ([pca_dashboard]) */
.pca-dashboard { max-width: 900px; }
.pca-dashboard-search { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.pca-dashboard-search input[type="text"] { padding: 8px 12px; border: 1px solid #ccc; border-radius: 4px; min-width: 260px; }
.pca-dashboard-search button { background: #1565c0; color: #fff; border: none; border-radius: 4px; padding: 8px 16px; cursor: pointer; }
.pca-dashboard-search button:hover { background: #0d47a1; }
.pca-dashboard-table { width: 100%; border-collapse: collapse; margin-bottom: 16px; }
.pca-dashboard-table th,
.pca-dashboard-table td { text-align: left; padding: 8px 10px; border-bottom: 1px solid #e0e0e0; font-size: 0.95em; }
.pca-dashboard-table th { font-weight: 700; color: #333; }
.pca-dashboard-pagination { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; }
.pca-dashboard-pagination-current { font-weight: 700; color: #1565c0; }
.pca-dashboard-pagination-ellipsis { color: #999; }
.pca-badge { display: inline-block; padding: 2px 8px; border-radius: 12px; font-size: 0.8em; font-weight: 600; white-space: nowrap; }
.pca-badge-valid { background: #eaf6ec; color: #1e4620; }
.pca-badge-expired { background: #fdecea; color: #611a15; }

/* Searchable "Nationality"/"Country" combobox (PCA_Dashboard::render_country_select(),
   assets/pca-country-select.js) -- the visible text input itself already
   picks up .pca-form input[type="text"]'s own border/padding/width above,
   this just adds the dropdown list positioned under it. */
.pca-country-select { position: relative; }
.pca-country-select-list {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 20;
	margin-top: 2px;
	max-height: 220px;
	overflow-y: auto;
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.pca-country-select-option { padding: 8px 12px; cursor: pointer; }
.pca-country-select-option:hover { background: #e7f3fb; }
