@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans&family=Poppins:wght@100...900&display=swap&family=Lexend&display=swap');

* {
	margin: 0;
	padding: 0;
	font-family: "Poppins", "Segoe UI", Arial, Helvetica, sans-serif;
}

body {
	background-color: #e9e9e9;
	color: #333;
}

a {
	text-decoration: none;
	color: #333;
}

.menu {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #e9ecef;
	box-shadow: 0 4px 30px rgba(88, 88, 88, 0.1);
	max-height: 100px;
	opacity: 1;
	padding: 10px;
	overflow: hidden;
	transition: all 0.5s ease;
}

.menu.hidden {
	display: flex !important;
	max-height: 0;
	opacity: 0;
	padding-top: 0;
	padding-bottom: 0;
	margin-top: 0;
	margin-bottom: 0;
	border: none;
	box-shadow: none;
	pointer-events: none;
}

.menuLeft {
	margin-left: 60px;
}

.menuRight {
	margin-right: 60px;
}

.menuLeft img {
	height: 50px;
}

.menuRight,
.menuLeft {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}

.menuRight .profileInfo {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
}

.menuLeft a {
	font-size: 14px;
}

.profileInfo img {
	width: 50px;
	border-radius: 50px;
}


.container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 60px;
	margin-top: 40px;
}

.documentList {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
	margin-left: 200px;
	margin-right: 200px;
}

.document {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 20px;
	height: 250px;
	width: 200px;
	border-radius: 10px;
	background-color: #f2f2f2;
	cursor: pointer;
	box-shadow: 0 4px 30px rgba(88, 88, 88, 0.1);
}

.document img {
	width: 100px;
}

.document:hover {
	background-color: #f8f8f8;
}

.newDocument {
	box-shadow: 0 4px 30px #59c4f5b0;
}

.newDocument i {
	font-size: 40px;
	color: #5a79f6;
}

.searchBar,
input[type='text'] {
	padding: 14px;
	width: 500px;
	border: none;
	outline: none;
	border-radius: 50px;
	background-color: #f8f8f8;
	box-shadow: 0 4px 30px rgba(88, 88, 88, 0.1);
}

.searchBar:focus,
input[type='text']:focus {
	background-color: #fff;
	box-shadow: 0 4px 30px #59c4f5b0;
}

#noResults {
	display: none;
}

.overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	overflow: none;
	background-color: #333333b8;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}

.overlay form {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 20px;
	padding: 50px 100px;
	background-color: #e9e9e9;
	border-radius: 10px;
}

.overlay form input[type="submit"],
.overlay form button {
	padding: 14px;
	width: 200px;
	border: none;
	outline: none;
	border-radius: 50px;
	background-color: #f8f8f8;
	cursor: pointer;
	box-shadow: 0 4px 30px rgba(88, 88, 88, 0.1);
}

.overlay form input[type="submit"]:hover,
.overlay form button:hover {
	background-color: #f2f1f1;
}

.overlay form input[type="submit"]:hover {
	box-shadow: 0 4px 30px #59c4f5b0;
}

.overlay form button {
	padding: 14px;
	width: 100px;
	border: none;
	outline: none;
	border-radius: 50px;
	background-color: #f8f8f8;
	box-shadow: 0 4px 30px rgba(88, 88, 88, 0.1);
}


.editButton,
.closeButton,
.trashButton,
.deleteButton {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	position: fixed;
	bottom: 40px;
	right: 40px;
	padding: 14px;
	border: none;
	outline: none;
	border-radius: 50px;
	box-shadow: 0 4px 30px #59c4f5b0;
	cursor: pointer;
	font-size: 16px;
}

.closeButton {
	bottom: 180px;
	box-shadow: 0 4px 30px #5858581a;
}

.trashButton {
	box-shadow: 0 4px 30px #5858581a;
}

.deleteButton {
	bottom: 110px;
	box-shadow: 0 4px 30px #ffbcbcb0;
}