body,
* {
	margin: 0;
}

.getlink_manga {
	font-family: 'Courier New', Courier, monospace;
	padding: 20px;
	background: #1a1a1a;
	color: white;
}

.video_tutorial {
	display: flex;
	justify-content: center;
	width: -webkit-fill-available;
	flex-direction: column;
	margin: 5px 0 5px 0;
}

.getlink_manga input,
.getlink_manga textarea,
.getlink_manga select {
	background: #1a1a1a;
	color: white;
	padding: 10px;
	margin: 10px;
	border: none;
	border-radius: 5px;
	font-size: 16px;
	width: 80%;
}

.getlink_manga input,
.getlink_manga textarea {
	background: #333;
	color: white;
}

.getlink_manga textarea#output_linkmanga,
.getlink_manga textarea#manualHtml {
	min-height: 200px;
	max-height: 400px;
	width: -webkit-fill-available;
	resize: none;
	outline: none;
}

.getlink_manga button {
	border-radius: 5px;
	padding: 10px;
	border: none;
	background: antiquewhite;
	color: #290000;
	font-weight: bold;
	font-size: 14px;
	margin: 10px;
	width: -webkit-fill-available;
}

.getlink_manga button:hover {
	background: #2980b9;
}

.getlink_manga textarea {
	height: 150px;
}

.getlink_manga .tab_gen {
	display: flex;
	justify-content: center;
	bottom: 10px;
	gap: 10px;
}

.getlink_manga .tab_gen button {
	flex: 1;
	background: ghostwhite;
	border: 1px solid antiquewhite;
	color: #3451db;
	padding: 10px;
	font-weight: bold;
}

.getlink_manga .tab_gen button.active {
	background: #3451db !important;
	color: antiquewhite !important;
	border: none !important;
}

.getlink_manga .tab_gen button[data-mode="mode_link"] {
	background: hotpink;
	color: lavenderblush;
	border: none;
}

.getlink_manga .content {
	display: none;
}

.getlink_manga .content.active {
	display: block;
}

.getlink_manga .input_target_img {
	display: flex;
}

.getlink_manga .input_target_img input {
	width: -webkit-fill-available;
}

.getlink_manga .input_target_img button {
	padding: 3px 8px;
	border: none;
	background: antiquewhite;
	color: #290000;
	font-weight: bold;
	font-size: 12px;
	margin: 10px;
}

/* Base Styles */
.ntf_g_modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(5px);
}

.ntf_g_content {
	background-color: #333333;
	margin: 15% auto;
	padding: 10px 0 0 0;
	border: none;
	width: 224px;
	max-width: 345px;
	border-radius: 12px;
	text-align: center;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	animation: fadeIn 0.3s ease-in-out;
}

.ntf_g_title {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 10px;
	color: #c5c5ce;
}

.ntf_g_text {
	font-size: 0.8rem;
	color: #d0d0d9;
	margin-bottom: 20px;
}

.ntf_g_actions {
	display: flex;
	justify-content: center;
	margin-top: 20px;
	border-top: 1px solid #4b4b4b;
}

.ntf_g_button {
	padding: 10px 20px;
	border: none;
	cursor: pointer;
	font-size: 1rem;
	transition: background-color 0.3s ease;
	width: -webkit-fill-available;
}

.ntf_g_button.confirm {
	color: #4180e6;
	background: transparent;
}

.ntf_g_button.confirm:hover {
	background-color: #3d3d3da6;
}

.ntf_g_button.cancel {
	background-color: transparent;
	color: white;
	border-right: 1px solid #4b4b4b;
}

.ntf_g_button.cancel:hover {
	background-color: #3d3d3da6;
}

.ntf_g_content input {
	background: #3d3d3da6;
	color: #d0d0d9;
	border: 1px solid #4b4b4b;
	border-radius: 5px;
	padding: 9px 10px;
	width: -webkit-fill-available;
	margin: 0 35px;
}

.ntf_g_content input:focus {
	outline: none;
}