body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	height: 100%;
}

h1 {
	text-align: center;
	color: #333;
}

.top-nav {
	background-color: #2c3e50;
	padding: 10px 0;
	display: flex;
	justify-content: center;
}

.nav-link {
	color: white;
	text-decoration: none;
	padding: 10px 20px;
	margin: 0 10px;
	font-size: 16px;
	transition: background-color 0.3s ease;
}

.nav-link:hover {
	background-color: #34495e;
}

.container {
	background: linear-gradient(135deg, #acecdf 0%, #aaecdb 100%);
	min-height: 100vh;
	padding: 40px 15%;
}

@media (max-width: 768px) {
	.container {
		padding: 20px 5%;
	}
}

.greeting {
	background-color: #2c3e50;
	color: white;
	padding: 15px 30px;
	border-radius: 30px;
	display: inline-block;
	margin-bottom: 10px;
}

.subtext {
	background-color: #ffffffcc;
	padding: 10px 20px;
	border-radius: 20px;
	margin-bottom: 30px;
	width: fit-content;
}

.content {
	display: flex;
	flex-direction: row;
	gap: 20px;
}

.surveys {
	background-color: white;
	border-radius: 10px;
	padding: 20px;
	width: 90%;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
	.surveys {
		width: 90%;
		padding: 16px;
	}
	.content {
		flex-direction: column;
		gap: 20px;
		flex-direction: column-reverse;
	}
}

.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.view-all {
	color: #3498db;
	text-decoration: none;
}

.project-actions {
	display: flex;
	gap: 10px;
}

.profile-update-form {
	background-color: white;
	border-radius: 10px;
	padding: 16px;
	width: 90%;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.profile-update-form label {
	font-weight: bold;
	color: #333;
	margin-bottom: 4px;
}

.profile-update-form input {
	padding: 8px;
	border-radius: 4px;
	border: 1px solid #bdc3c7;
	font-size: 14px;
	width: 100%;
	box-sizing: border-box;
	transition: border-color 0.3s ease;
}

.profile-update-form input:focus {
	border-color: #3498db;
	outline: none;
}

.profile-update-form button {
	padding: 8px;
	background-color: #2c3e50;
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
	transition: background-color 0.3s ease;
}

.profile-update-form button:hover {
	background-color: #34495e;
}

.custom-pair {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: stretch;
}

@media (min-width: 768px) {
	.custom-pair {
		flex-direction: row; 
}

@media (max-width: 768px) {
	.profile-update-form {
		width: 90%;
		padding: 20px;
	}
}
