/* Base Styles */
body
{
	background-color: white;
	color: black;
	font-family: sans-serif;
	margin: 0;
}


/* Header Styles */
header
{
	align-items: center;
	background-color: white;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
	padding: 1rem 1.5rem;
}


.logo-container
{
	align-items: center;
	display: flex;
	font-size: 21px;
	gap: 0.5rem;
}


.logo-container img
{
	height: 1.5rem;
	width: 1.5rem;
}


.logo-container span
{
	font-weight: 700;
}


/* Navigation Styles */
nav
{
	display: flex;
	font-weight: 400;
	gap: 2rem;
}


nav a
{
	border-bottom: 2px solid transparent;
	color: inherit;
	font-size: 18px;
	padding-bottom: 0.25rem;
	text-decoration: none;
	transition: border-color 0.2s ease;
}


nav a:hover
{
	border-bottom-color: black;
}


/* Main Content Styles */
main
{
	margin: 2.5rem auto;
	text-align: center;
}


h1
{
	font-size: 4.5rem;
	font-weight: 800;
	margin: 0;
	text-align: center;
}


.gradient-text
{
	-webkit-background-clip: text;
	background-clip: text;
	background-image: linear-gradient(to right, #5ACB8E, #5AB0B0, #6B85E6);
	color: transparent;
}


p
{
	color: #4b5563;
	font-size: 1.25rem;
	margin: 1.5rem auto auto auto;
	max-width: 84%;
	text-align: justify;
}


/* Button Styles */
button
{
	background-color: black;
	border: none;
	border-radius: 0.75rem;
	color: white;
	cursor: pointer;
	font-size: 1.125rem;
	font-weight: 500;
	margin-top: 3rem;
	padding: 1rem 2rem;
	transition: opacity 0.2s ease;
}


button:hover
{
	opacity: 0.9;
}


button a
{
	color: inherit;
	text-decoration: none;
}


.welcome-blue
{
	color: #4285f4;
}


.welcome-green
{
	color: #3c9d9b;
}


.section-header
{
	align-items: center;
	border-bottom: 1px solid #d1d5db;
	display: contents;
	justify-content: center;
	margin-bottom: 16px;
	padding-bottom: 8px;
}


h2
{
	font-size: 2.25rem;
	font-weight: 600;
	margin-inside: 1rem;
}


#createNewBtn
{
	align-items: center;
	background-color: #a8c1f8;
	border-radius: 9999px;
	color: #1a4ed0;
	display: flex;
	font-size: 14px;
	font-weight: 600;
	gap: 8px;
	padding: 8px 20px;
	transition: background-color 0.2s ease;
}


#createNewBtn:hover
{
	background-color: #8aa9f5;
}


.plus-icon
{
	display: inline-block;
	height: 16px;
	position: relative;
	width: 16px;
}


.plus-icon::before, .plus-icon::after
{
	background-color: #1a4ed0;
	content: "";
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
}


.plus-icon::before
{
	height: 2px;
	width: 100%;
}


.plus-icon::after
{
	height: 100%;
	width: 2px;
}


#notebooksGrid
{
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(1, 1fr);
}


@media (min-width: 600px)
{
	#notebooksGrid
	{
		grid-template-columns: repeat(2, 1fr);
	}
}


@media (min-width: 900px)
{
	#notebooksGrid
	{
		grid-template-columns: repeat(3, 1fr);
	}
}


.notebook-tile
{
	background: white;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	overflow: hidden;
	position: relative;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}


.notebook-tile:hover
{
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transform: translateY(-4px);
}


.notebook-content
{
	padding: 0.5rem;
}


.notebook-title
{
	font-size: 18px;
	font-weight: 600;
}


.notebook-meta
{
	color: #5f6368;
	font-size: 12px;
}


.notebook-meta-container
{
	display: flex;
	justify-content: space-between;
	margin-top: 8px;
	width: 100%;
}


.notebook-sources
{
	color: #5f6368;
	font-size: 12px;
	text-align: left;
}


.notebook-date
{
	color: #5f6368;
	font-size: 12px;
	text-align: right;
}


.gradient-separator
{
	background: linear-gradient(to right, #5ACB8E, #4285f4); /* Gradient colors */
	height: 0.5rem; /* Set the height of the separator */
	margin: auto; /* Center the separator */
	width: 84%; /* Set your desired width */
}