.solid-wallet-app {
	max-width: 32rem;
	margin: 1.5rem 0;
	font-size: 1rem;
}

.solid-wallet-form h3,
.solid-wallet-header h3 {
	margin: 0 0 1rem;
}

.solid-wallet-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1rem;
}

.solid-wallet-field {
	margin-bottom: 0.9rem;
	display: flex;
	flex-direction: column;
}

.solid-wallet-field label {
	font-weight: 600;
	margin-bottom: 0.3rem;
}

.solid-wallet-field input,
.solid-wallet-field select {
	padding: 0.5rem 0.6rem;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 1rem;
}

.solid-wallet-button {
	background: #1b5e8c;
	color: #fff;
	border: none;
	border-radius: 4px;
	padding: 0.6rem 1.1rem;
	font-size: 1rem;
	cursor: pointer;
}

.solid-wallet-button:disabled {
	opacity: 0.6;
	cursor: default;
}

.solid-wallet-button:hover:not(:disabled) {
	background: #164a70;
}

.solid-wallet-link-button {
	background: none;
	border: none;
	color: #1b5e8c;
	text-decoration: underline;
	cursor: pointer;
	padding: 0.4rem 0.6rem;
	font-size: 0.95rem;
}

.solid-wallet-link-button.is-danger {
	color: #b3261e;
}

.solid-wallet-form-actions {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 0.5rem;
}

.solid-wallet-record-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.solid-wallet-record-list li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	padding: 0.6rem 0;
	border-bottom: 1px solid #e2e2e2;
}

.solid-wallet-record-id {
	font-family: monospace;
	font-size: 0.85rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	flex: 1;
}

.solid-wallet-message {
	padding: 0.6rem 0.8rem;
	border-radius: 4px;
	margin-bottom: 1rem;
}

.solid-wallet-message.is-error {
	background: #fdecea;
	color: #b3261e;
	border: 1px solid #f4c3c0;
}

.solid-wallet-message.is-ok {
	background: #e8f5e9;
	color: #1b5e20;
	border: 1px solid #c3e6c5;
}
