body {
	font-family: 'Arial', sans-serif;
	background-color: #f8f9fa;
	padding: 20px;
}
.title {
	text-align: center;
	font-size: 28px; /* Larger font */
	font-weight: bold;
	margin-bottom: 20px;
}
.main-container {
	width: 100%;

	margin-left: 0px;
	padding: 20px;
	background: white;
	border-radius: 10px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.form-group {
	display: flex;
	align-items: center;
	gap: 10px;
}
.file-input {
	max-width: 400px; /* Increase width of file input */
}

#upload-btn {
	width: 120px; /* Set smaller width for upload button */
}

.form-group {
	display: flex;
	align-items: center;
	gap: 10px; /* Add spacing between file input and button */
}
.subtitle {
	font-size: 0px;
	font-weight: bold;
	margin-top: 15px;
}
.btn {
	margin-top: 10px;
}
.table-container {
	width: 100%;
	overflow-x: auto; /* Prevents breaking layout */
}
.hidden {
	display: none;
}
.error {
	color: red;
	margin-top: 10px;
}

/* Center the form and limit its width */
form {
	max-width: 400px; /* Set a maximum width */
	margin: 0 auto; /* Center the form horizontally */
}

/* Input fields and buttons styling */
input[type='email'],
input[type='password'],
button {
	width: 100%; /* Make inputs/buttons span the full width of the form */
	max-width: 400px; /* Ensure they don't exceed the form's max-width */
	margin: 10px auto; /* Add spacing between elements */
	padding: 10px; /* Add some padding for better usability */
	display: block; /* Ensure block-level layout for stacking */
}

button {
	background-color: #007bff;
	color: white;
	border: none;
	border-radius: 5px;
}

button:hover {
	background-color: #0056b3;
}



