.wide{
	width: 100% !important;
	margin: 0px !important;
}

/* ===== Global ===== */
body {
	font-family: 'Arial', sans-serif;
	background-color: #121212; /* dark background */
	color: #e0e0e0;
	margin: 0;
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* ===== Main container ===== */
.container {
	background-color: #1c1c1c;
	border-radius: 8px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
	padding: 20px;
	max-width: 600px;
	width: 100%;
	border: 1px solid #2a2a2a;
}

/* ===== Headings ===== */
h1 {
	text-align: center;
	color: #f0f0f0;
	font-size: 24px;
	margin-bottom: 20px;
}

/* ===== Inputs ===== */
textarea {
	width: 100%;
	height: 150px;
	padding: 10px;
	border-radius: 4px;
	border: 1px solid #333;
	background-color: #181818;
	color: #e0e0e0;
	font-size: 16px;
	resize: none;
	margin-bottom: 15px;
}

textarea::placeholder {
	color: #888;
}

input[type="file"] {
	font-size: 16px;
	margin-bottom: 15px;
	color: #ccc;
}

/* ===== Buttons ===== */
input[type="submit"],
button {
	width: 48%;
	padding: 10px;
	margin: 5px 1%;
	font-size: 16px;
	color: #fff;
	background-color: #3a3a3a; /* grey buttons */
	border: 1px solid #444;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.25s ease, border-color 0.25s ease;
}

input[type="submit"]:hover,
button:hover {
	background-color: #5a1a1a; /* dark red highlight */
	border-color: #7a1f1f;
}

/* Secondary button (link styled as button) */
a.button {
	width: 48%;
	padding: 10px;
	margin: 5px 1%;
	font-size: 16px;
	color: #fff;
	background-color: #2f2f2f;
	border: 1px solid #444;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.25s ease, border-color 0.25s ease;
	text-decoration: none;
	text-align: center;
	display: inline-block;
}

a.button:hover {
	background-color: #5a1a1a;
	border-color: #7a1f1f;
}

/* ===== Decoded text area ===== */
#decodedText {
	height: calc(60vh - 100px);
	font-family: monospace;
	font-size: 14px;
	width: 100%;
	background-color: #101010;
	color: #e6e6e6;
	border: 1px solid #333;
}

/* ===== Text ===== */
p {
	text-align: center;
	font-size: 16px;
	color: #aaa;
	margin-top: 20px;
}

/* ===== Button container ===== */
.btn-container {
	display: flex;
	justify-content: space-between;
}

/* ===== Menu ===== */
.menu {
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
}

.menu a {
	text-decoration: none;
	color: #c94a4a; /* dark red accent */
	font-size: 18px;
	margin: 0 15px;
	transition: color 0.3s ease;
}

.menu a:hover {
	color: #ff6b6b;
}

/* ===== Mobile menu ===== */
.menu-button {
	display: none;
	font-size: 24px;
	background-color: #3a3a3a;
	color: #fff;
	padding: 10px 20px;
	border: 1px solid #444;
	border-radius: 4px;
	cursor: pointer;
	margin-bottom: 20px;
	width: 100%;
	text-align: center;
}

.menu-button:hover {
	background-color: #5a1a1a;
	border-color: #7a1f1f;
}

.menu-button:focus {
	outline: none;
}

.menu-content {
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
	.menu {
		display: none;
		flex-direction: column;
	}

	.menu-button {
		display: block;
	}

	.menu a {
		margin: 10px 0;
	}

	.menu.show {
		display: flex;
	}
}
