html {
	font-size: 100%; /* Base font size */
}

body {
	/* font-family: Arial, sans-serif; */
	margin: 0;
	padding: 0;
	font-size: 1rem; /* Equivalent to 16px */
	margin-top: 0px;
	padding-top: 0px;
}

.container {
	margin: 1% auto;
	padding: 1%;
	border: 0px solid #ccc;
	border-radius: 1px;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

h1 {
	text-align: center;
	font-size: 2.5rem; /* Responsive font size */
	margin-bottom: 2rem;
}

h2 {
	text-align: center;
	font-size: 1.5rem; /* Responsive font size */
	margin-bottom: 0rem;
	margin-top: 0rem;
}

h2l {
	text-align: left;
	font-size: 1.5rem; /* Responsive font size */
	margin-bottom: 0rem;
	margin-top: 0rem;
}

p {
	margin-top: 0px;
	margin-bottom: 0px;
	padding-top: 0px; 
	padding-bottom: 6px;
}

a {
	margin-top: 0px;
	margin-bottom: 0px;
	padding-top: 0px; 
	padding-bottom: 0px;
}

/* Additional CSS for text input labels */
.form-group {
	display: flex;
	margin-bottom: 2rem;
}

.link-group {
	display: flex;
	font-size: 1.5rem; /* Responsive font size */
	margin-bottom: 1rem;
}

span {
  padding: 0px; /* add your preferred padding value here */
  margin-right: 0px;
}

input[type="text"],
select,
input[type="password"] {
	flex: 1;
	width: calc(100% - 1.875rem); /* Adjust input width */
	padding: 1rem;
	border-radius: 5px;
	border: 1px solid #ccc;
	font-size: 1.2rem; /* Responsive font size */
}

.button-group {
	text-align: center;
	margin-top: 2rem;
}

button {
	padding: 1rem 2rem;
	margin-right: 1rem;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 1.2rem; /* Responsive font size */
}

.submit-btn {
	background-color: #4CAF50;
	color: white;
}

.cancel-btn {
	background-color: #f44336;
	color: white;
} 

/* Additional CSS for radio button group */
.radio-group {
	margin-left: 1.25rem; /* Adjust margin to separate from radio buttons */
}

.radio-group input[type="radio"],
.radio-group label {
	display: inline-block;
	vertical-align: middle;
	margin-bottom: 0.5rem;
}

.radio-group input[type="radio"] {
	margin-right: 0.5rem;
}

.table {
	display: table;
	width: auto;
	border-collapse: collapse;
	margin: auto;
}

.row {
	display: table-row;
}

.cell {
	display: table-cell;
	padding: 0px;
	border: 1rem solid #FFFF;
	vertical-align: top;
	font-size: 1rem;
}

.header {
	font-weight: bold;
	background-color: #FFFF;
}

.cell img {
	display: block;
	margin: 0 auto;
	vertical-align: top;
}

.cell a {
	display: block;
	text-decoration: none;
	text-align: left;
	vertical-align: top;
}

.cell a + a {
	margin-top: 0.0rem;
}

red { color: red; }

/* Responsive font size adjustments */
@media screen and (max-width: 1080px) {
	html {
		font-size: 90.0%; /* Adjust base font size */
	}
}

/* Responsive font size adjustments */
@media screen and (max-width: 768px) {
	html {
		font-size: 70.0%; /* Adjust base font size */
	}
}

@media screen and (max-width: 480px) {
	html {
		font-size: 45%; /* Adjust base font size */
	}
}
