.cid-wrap {
	display: flex;
	flex-direction: column;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.cid-wrap .cards {
	display: flex;
	flex-direction: row;
	gap: 24px;
}

.cid-wrap h1 {
	color: #23282d;
	font-size: 24px;
	margin-bottom: 10px;
}

.cid-description {
	color: #555;
	font-size: 16px;
	margin-bottom: 30px;
}

.cid-card {
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	padding: 20px;
	margin-bottom: 20px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.cid-card h2 {
	font-size: 18px;
	color: #23282d;
	margin: 0 0 15px;
	font-weight: 600;
}

.cid-card p {
	color: #444;
	font-size: 14px;
	margin: 0 0 15px;
}

.cid-button {
	padding: 8px 16px;
	font-size: 14px;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.cid-button-primary {
	background-color: #0073aa;
	border-color: #006799;
	color: #fff;
}

.cid-button-primary:hover {
	background-color: #006799;
}

.cid-button-secondary {
	background-color: #46b450;
	border-color: #3da147;
	color: #fff;
}

.cid-button-secondary:hover {
	background-color: #3da147;
}

.cid-button-danger {
	background-color: #d63638;
	border-color: #c32d2f;
	color: #fff;
}

.cid-button-danger:hover {
	background-color: #c32d2f;
}

.cid-log {
	background: #f8f8f8;
	border: 1px solid #ddd;
	padding: 15px;
	border-radius: 4px;
	font-family: monospace;
	font-size: 13px;
	max-height: 300px;
	overflow-y: auto;
	color: #333;
}

.notice-success {
	border-left-color: #46b450 !important;
}

@media (max-width: 600px) {
	.cid-card {
		padding: 15px;
	}

	.cid-button {
		width: 100%;
		text-align: center;
	}
}