.custom-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #1e1e1e;
	padding: 12px;
	border-radius: 8px;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
	margin-bottom: 15px;
	color: white;
	max-width: 420px;
}

.custom-header-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.custom-title {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 5px;
}

.custom-thumbnail {
	margin-top: 5px;
}

.custom-thumbnail img {
	width: 100px;
	height: auto;
	border-radius: 5px;
}

.custom-header-button {
	display: flex;
	align-items: center;
}

.custom-button {
	background: #6c9b3b;
	color: white;
	border: none;
	padding: 8px 14px;
	border-radius: 5px;
	cursor: pointer;
	font-size: 14px;
	font-weight: bold;
	transition: background 0.2s;
}

.custom-button:hover {
	background: #5b8831;
}

.custom-button:focus {
	outline: none;
}

.custom-button::-moz-focus-inner {
	border: 0;
}