.server_report_error {
	background: #cc1818;
	box-shadow: 2px 1px 5px 1px rgb(80, 41, 41);
	overflow: hidden;
	padding: 0.5rem 2rem;
	font-size: 0.9rem;
	width: fit-content;
	margin-inline: auto;
	color: #f1f1f1;
	border-radius: 3px;
	text-align: center;
	font-weight: 600;
	cursor: pointer;
	display: none;
}

.server_report_error.mobile {
	display: block;
}
@media (min-width: 481px) {
	.server_report_error {
		display: block;
	}
	.server_report_error.mobile {
		display: none;
	}
}

.report-bulk {
	display: inline-block;
	background: #cc1818;
	color: #f1f1f1 !important;
	padding: 0.1rem 1rem;
	line-height: 26px;
	font-size: 12px;
	border-radius: 3px;
	outline: none;
	border: none;
	cursor: pointer;
}
@media(max-width: 480px){
.report-bulk{
margin-top: 1rem;
}
}

#options-list {
	max-height: calc(5 * 36px);
	overflow-y: scroll;
}

.checkbox-group {
	margin-bottom: 20px;
}

.checkbox-label {
	display: flex;
	align-items: center;
	padding: 8px;
	margin: 4px 0;
	cursor: pointer;
	border-radius: 4px;
	transition: background-color 0.2s;
}

.checkbox-label:hover {
	background-color: #f3f4f6;
}

.checkbox-label input {
	margin-right: 12px;
}

.komik_info-release {
	display: flex !important;
	align-items: center;
	justify-content: space-between;
}

.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 1000;
}

.modal {
	background: white;
	border-radius: 8px;
	width: 100%;
	max-width: 500px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.modal-header {
	padding: 16px;
	border-bottom: 1px solid #e5e5e5;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.modal-title {
	font-size: 1.25rem;
	font-weight: 600;
	margin: 0;
	color: #1f2937;
}

.close-button {
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: #6b7280;
	padding: 0;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.close-button:hover {
	color: #374151;
}

.form-content {
	padding: 16px;
}

.modal-footer {
	padding: 16px;
	border-top: 1px solid #e5e5e5;
	background-color: #f9fafb;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
	display: flex;
	justify-content: flex-end;
	gap: 12px;
}

.button {
	padding: 8px 16px;
	border-radius: 4px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s;
}

.button-secondary {
	background-color: white;
	border: 1px solid #d1d5db;
	color: #374151;
}

.button-secondary:hover {
	background-color: #f3f4f6;
}

.button-primary {
	background-color: #3367d6;
	border: 1px solid #3367d6;
	color: white;
}

.button-primary:hover {
	background-color: #1d4ed8;
}

.button-primary:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.select-group {
	margin-bottom: 20px;
}

.select-group select {
	width: 100%;
	padding: 8px;
	margin-top: 8px;
	border: 1px solid #d1d5db;
	border-radius: 4px;
	background-color: white;
}

.success-message {
	display: none;
	text-align: center;
	padding: 32px 16px;
}

.success-message h3 {
	color: #059669;
	margin-bottom: 8px;
}

.success-message p {
	color: #374151;
	margin-bottom: 16px;
}
#must-login {
	display: none;
	text-align: center;
	padding: 32px 16px;
}

#must-login h3 {
	color: #cc1818;
	margin-bottom: 8px;
}

#must-login p {
	color: #ccc;
	margin-bottom: 16px;
}

.countdown {
	font-weight: bold;
	color: #2563eb;
}

.darkmode {
	.modal {
		background: #16151d;
		color: #ccc;
	}
	.modal-header {
		border-bottom: 1px solid #999;
	}
	.modal-title {
		color: #7f7f7f;
	}
	.modal-footer {
		background: #16151d;
		border-top: 1px solid #999;
	}

	.select-group select {
		width: 100%;
		padding: 8px;
		margin-top: 8px;
		border: 1px solid #999;
		border-radius: 4px;
		background-color: #282731;
		color: #eee;
	}
	.checkbox-label:hover {
		background-color: #3367d6;
	}
}