/* Blueprint Browser Styles */
.popup-content {
	background-color: #fefefe;
	background: #21252b;
	padding: 0 !important;
	width: 80% !important;
	max-width: 1200px !important;
	display: flex;
	flex-direction: column;
	border-radius: 8px;
	overflow: hidden;
}

.blueprint-header {
	padding: 20px;
	border-bottom: 1px solid #3e4451;
	background: #282c34;
}

.blueprint-search {
	width: 100%;
	padding: 10px;
	background: #1e2227;
	border: 1px solid #3e4451;
	border-radius: 4px;
	color: #abb2bf;
	font-family: monospace;
	font-size: 14px;
	outline: none;
}

.blueprint-search:focus {
	border-color: #528bff;
}

.blueprint-main {
	display: flex;
	flex: 1;
	overflow: hidden;
}

.blueprint-sidebar {
	width: 200px;
	background: #282c34;
	border-right: 1px solid #3e4451;
	overflow-y: auto;
	scrollbar-width: thin;
	scrollbar-color: #4b5363 #282c34;
}

.blueprint-category {
	padding: 12px 20px;
	cursor: pointer;
	color: #abb2bf;
	font-family: monospace;
	font-size: 13px;
	border-left: 3px solid transparent;
	transition: all 0.2s;
}

.blueprint-category:hover {
	background: #2c313a;
}

.blueprint-category.active {
	background: #2c313a;
	color: #61afef;
	border-left-color: #61afef;
}

.blueprint-category.special {
	color: #e5c07b;
	font-weight: bold;
}

.blueprint-grid-container {
	flex: 1;
	overflow-y: auto;
	padding: 20px;
	scrollbar-width: thin;
	scrollbar-color: #4b5363 #21252b;
}

.blueprint-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 15px;
}

.blueprint-card {
	background: #282c34;
	border: 1px solid #3e4451;
	border-radius: 6px;
	padding: 15px;
	cursor: pointer;
	transition: all 0.2s;
	position: relative;
}

.blueprint-card:hover {
	border-color: #528bff;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.blueprint-card-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 10px;
}

.blueprint-card-title {
	color: #abb2bf;
	font-family: monospace;
	font-size: 13px;
	word-break: break-word;
	flex: 1;
}

.blueprint-card-favorite {
	color: #5c6370;
	cursor: pointer;
	font-size: 16px;
	padding: 2px 6px;
	border-radius: 3px;
	transition: all 0.2s;
}

.blueprint-card-favorite:hover {
	background: #3e4451;
}

.blueprint-card-favorite.active {
	color: #e5c07b;
}

.blueprint-card-actions {
	display: flex;
	gap: 8px;
	margin-top: 10px;
}

.blueprint-card-btn {
	flex: 1;
	padding: 6px 12px;
	background: #3e4451;
	border: none;
	border-radius: 4px;
	color: #abb2bf;
	font-family: monospace;
	font-size: 11px;
	cursor: pointer;
	transition: all 0.2s;
}

.blueprint-card-btn:hover {
	background: #528bff;
	color: white;
}

.blueprint-card-btn.secondary {
	background: #2c313a;
}

.blueprint-card-btn.secondary:hover {
	background: #3e4451;
}

.blueprint-empty {
	text-align: center;
	color: #5c6370;
	font-family: monospace;
	padding: 40px;
	font-size: 14px;
}
