html,
body {
	height: 100%;
	margin: 0;
	padding: 0;
}

body {
	background: linear-gradient(to right, #fde2d7, #f1f8ff);
	font-family: "Noto Sans Bengali", "Segoe UI", sans-serif;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	box-sizing: border-box;
}

.converter-card {
	background-color: #ffffff;
	border-radius: 12px;
	padding: 2rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
	width: 100%;
	max-width: 640px;
	max-height: 100%;
	overflow: auto;
}

.logo-img {
	max-width: 100px;
	height: auto;
	display: block;
	margin: 0 auto;
}

.app-title {
	font-size: 1.7rem;
	font-weight: bold;
	text-align: center;
	color: #0077b6;
	margin-top: 0.5rem;
	margin-bottom: 0.2rem;
}

.tagline {
	font-size: 1rem;
	font-weight: 500;
	text-align: center;
	color: #0077b6;
	margin-bottom: 1.5rem;
}


label {
	font-weight: 500;
	margin-bottom: 0.3rem;
}

.form-control,
.form-select {
	border-radius: 6px;
	border: 1px solid #cfd8dc;
	transition: border-color 0.3s;
}

.form-control:focus,
.form-select:focus {
	border-color: #0077b6;
	box-shadow: 0 0 0 0.2rem rgba(0, 119, 182, 0.25);
}

.result-display {
	margin-top: 2rem;
	padding: 1rem;
	background-color: #e3f2fd;
	border: 1px dashed #64b5f6;
	border-radius: 8px;
	text-align: center;
	font-size: 1.4rem;
	color: #01579b;
	white-space: pre-wrap; /* Add this line */

}

strong{
	font-weight: 700;
}

@media (max-width: 576px) {
	h1 {
		font-size: 1.4rem;
	}

	.result-display {
		font-size: 1.2rem;
	}
}