body {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	margin: 0px;
	background-color: rgb(244, 244, 244);
	min-height: 100vh;
	background: linear-gradient(to right, #ddeafd, #c3d8ff);

	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-style: normal;
}

header {
	align-self: flex-start;
	margin-left: 2rem;
}

#upload-file-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 550px;
	background-color: rgb(255, 255, 255);
	padding: 30px;
	background: #fff;
	border-radius: 20px;
	box-shadow: rgba(149, 157, 165, 0.5) 0px 8px 24px;
}

#title-container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

.title-text {
	margin: 0px;
	font-weight: 500;
	margin-right: 10px;
}

.upload-file-icon {
	width: 32px;
	height: auto;
	padding-bottom: 10px;
}

.drag-area {
	height: 200px;
	width: 100%;
	border: 3px dashed #e0eafc;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	margin-top: 20px;
	margin-bottom: 20px;
}

.drag-area.active {
	background-color: aliceblue;
}

.drag-area .header {
	font-size: 30px;
	font-weight: 500;
	color: #34495e;
}

.browse-button {
	color: #5e85cc;
}

.browse-button:hover {
	cursor: pointer;
}

#files-attached-container {
	width: 100%;
	max-height: 250px;
	overflow-y: auto;
	margin-bottom: 10px;
	padding: 10px;
	display: none;
	flex-direction: column;
	justify-content: space-between;
}

.attached-file-details {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border: 1px solid black;
	border-radius: 5px;
	padding: 4px 10px 4px 10px;
	margin: 5px 0px 5px 0px;
}

.attached-file-details img {
	width: 1.5rem;
	height: 1.5rem;
	cursor: pointer;
}

#upload-button {
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	width: 100%;
	height: 30px;
	border-radius: 5px;
	background-color: #4caf50;
	/* margin: 3px 1px; */
	border: none;
	color: white;
	cursor: pointer;
}

#upload-button .hidden {
	display: none;
}
