body {
	font-family: Arial, sans-serif;
	background-color: #f2f2f2;
}

.container {
	margin: 50px auto;
	text-align: center;
	max-width: 800px;
}

h1 {
	font-size: 3em;
	margin-bottom: 20px;
}

.date {
	font-size: 1.2em;
	margin-bottom: 10px;
}

.quote-container {
	background-color: white;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
	margin-bottom: 30px;
	position: relative;
}

.quote {
	font-size: 2em;
	margin-bottom: 20px;
}

.quote-actions {
	display: flex;
	justify-content: center;
}

.new-quote, .copy-quote, .share-quote {
	background-color: #4CAF50;
	color: white;
	border: none;
	padding: 10px;
	border-radius: 5px;
	cursor: pointer;
	font-size: 1.2em;
	margin-right: 10px;
}

.share-quote {
	background-color: #1DA1F2;
}

.favorites-container {
	background-color: white;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
	margin-bottom: 30px;
}

.favorites-container h2 {
	font-size: 2em;
	margin-bottom: 10px;
}

.favorites-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.favorites-list li {
	margin-bottom: 10px;
}

.clear-favorites {
	background-color: #f44336;
	color: white;
	border: none;
	padding: 10px;
	border-radius: 5px;
	cursor: pointer;
	font-size: 1.2em;
}

.loading-spinner {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border: 5px solid #f3f3f3;
	border-top: 5px solid #3498db;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}