/* Container styling */
#srno-inputs {
	display: flex;
	gap: 3px;
	margin: 5px 0;
}

/* Input field styling */
#srno-inputs input[type="text"] {
	width: 25px;
	height: 25px;
	font-size: 13px;
	border: 1px solid #a2a2a2;
	border-radius: 1px;
	text-align: center;
}

/* Focus styling */
#srno-inputs input[type="text"]:focus {
	border-color: #007BFF;
	outline: none;
	box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.hidden {
		display: none;
	}

