
.wide{
	width: 100% !important;
	margin: 0px !important;
}


body {
	font-family: 'Arial', sans-serif;
	background-color: #f4f4f4;
	margin: 0;
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	/*height: 100vh;*/
}

.container {
	background-color: #ffffff;
	border-radius: 8px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
	padding: 20px;
	max-width: 600px;
	width: 100%;
}

h1 {
	text-align: center;
	color: #333;
	font-size: 24px;
	margin-bottom: 20px;
}

textarea {
	width: 100%;
	height: 150px;
	padding: 10px;
	border-radius: 4px;
	border: 1px solid #ccc;
	font-size: 16px;
	resize: none;
	margin-bottom: 15px;
}

input[type="file"] {
	font-size: 16px;
	margin-bottom: 15px;
}




input[type="submit"],
button {
	width: 48%;
	padding: 10px;
	margin: 5px 1%;
	font-size: 16px;
	color: #fff;
	background-color: #007bff;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.btn-row {
    display: block;
    margin-top: 10px;
}


a.button {
	width: 48%;
	padding: 10px;
	margin: 5px 1%;
	font-size: 16px;
	color: #fff;
	background-color: #85B200;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.3s ease;
	text-decoration: none;    
	text-align: center;       
	display: inline-block;    
}

#decodedText {
    height: calc(60vh - 100px); 
    font-family: monospace;
    font-size: 14px;
    width: 100%;
}


input[type="submit"]:hover {
	background-color: #0056b3;
}

input[type="submit"]:focus {
	outline: none;
}

p {
	text-align: center;
	font-size: 16px;
	color: #555;
	margin-top: 20px;
}



.btn-container {
	display: flex;
	justify-content: space-between;
}



/* Menu styles */
.menu {
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
}

.menu a {
	text-decoration: none;
	color: #007bff;
	font-size: 18px;
	margin: 0 15px;
	transition: color 0.3s ease;
}

.menu a:hover {
	color: #0056b3;
}

/* Mobile menu styles */
.menu-button {
	display: none;
	font-size: 24px;
	background-color: #007bff;
	color: #fff;
	padding: 10px 20px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	margin-bottom: 20px;
	width: 100%;
	text-align: center;
}

.menu-button:focus {
	outline: none;
}

.menu-content {
	display: flex;
	flex-direction: column;
	align-items: center;
}

@media (max-width: 768px) {
	.menu {
		display: none;
		flex-direction: column;
	}

	.menu-button {
		display: block;
	}

	.menu a {
		margin: 10px 0;
	}

	.menu.show {
		display: flex;
	}
}
