* {
	box-sizing: border-box;
}

body {
	padding: 0;
	margin: 0;
}

.container {
	margin: 0 auto;
	width: 85%;
}

.table-header, .archived-header {
	margin: 10px 0 0;
	width: 100%;
	height: 40px;
	display: grid;
	color: white;
	grid-template-columns: 10% 20% 14% 14% 14% 14% 4% 5% 5%;
	align-items: center;
	background-color: rgb(67, 67, 67);
}

.note, .archived-note {
	width: 100%;
	display: grid;
	grid-template-columns: 10% 20% 14% 14% 14% 14% 4% 5% 5%;
	margin: 0 auto 5px auto;
	padding: 10px 0;
	align-items: center;
	background-color: rgb(220, 219, 223);
	color: black;
	font-size: 15px;
}

.note__name {
	padding-right: 5px;
}

.note__name, .note__content, .note__category, .note__created {
	white-space: nowrap;
	overflow: hidden; 
	text-overflow: ellipsis; 
}

.note__icon {
	margin: 0 auto;
	background-color: rgb(112, 112, 112);
	border-radius: 50%;
	border: 2px solid rgb(112, 112, 112);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
}

.note__icon i {
	font-size: 20px;
	color: white;
}

.note__content {
	word-wrap: break-word;
}

.note-btn {
	background-color: transparent;
	border: none;
	color: rgb(63, 52, 52);
	cursor: pointer;
	justify-self: center;
	outline: none;
}

.note-btn:hover {
	color: rgb(32, 158, 0);
}

.wrapper-btn{
	display: flex;
	justify-content: flex-end
}

.button-create {
	padding: 10px 25px;
	font-size: 20px;
	margin: 20px 0 0px;
}

.form-note {
	display: grid;
	margin: 0 auto;
	padding: 15px;
	box-shadow: 2px 2px 5px #000;
	background-color: rgb(136, 136, 136);
	color: white;
	font-size: 18px;
}

.form-note__content {
	max-width: 100%;
	max-height: 100%;
	margin-bottom: 5px;
}

.form-note__checkbox {
	display: inline-flex;
}

.header-result-table {
	display: grid;
	grid-template-columns: 10% 30% 30% 30%;
	color: white;
	height: 40px;
	grid-template-rows: 40px;
	margin: 30px auto 10px auto;
	align-items: center;
	background-color: rgb(67, 67, 67);
}

.summary-row{
	width: 100%;
	display: grid;
	grid-template-columns: 10% 30% 30% 30%;
	margin: 0 auto 5px auto;
	padding: 10px 0;
	align-items: center;
	background-color: rgb(230, 230, 230);
	color: black;
	font-size: 15px;
}

.archived-note{
	border: 2px solid rgb(69, 63, 63);
}

@media (max-width: 600px) {
	.container {
		width: 95%;
	}

	.table-header, .archived-header {
		margin: 3px 0 0;
	}
	
	.note, .archived-note {
		margin: 0 auto 3px auto;
		padding: 3px 0;
		font-size: 10px;
	}

	.note__icon {
		width: 16px;
		height: 16px;
	}
	
	.note__icon i, .material-icons{
		font-size: 14px;
	}

	.button-create {
		padding: 5px 15px;
		font-size: 15px;
		margin: 10px 0 0px;
	}
	

	.summary-row{
		margin: 0 auto 3px auto;
		padding: 5px 0;
		font-size: 10px;
	}

	.table-header div, .header-result-table div{
		font-size: 10px;
	}
}