@font-face {
	font-family: 'OpenHuninn';
	src: url('../font/OpenHuninn.ttf') format('truetype');
}
p {
        line-height: 1.3;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family: 'OpenHuninn', 'Segoe UI', Arial, sans-serif;
	background: linear-gradient(135deg, #ffffff, #f2f2f2);
	background-size: 400% 400%;
	animation: gradientShift 10s ease infinite;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 20px;
}
.dashboard {
	max-width: 1200px;
	width: 100%;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	padding: 40px;
}
.header {
	text-align: center;
	margin-bottom: 30px;
}
.header h1 {
	color: #2c3e50;
	font-size: 2.4em;
	margin-bottom: 10px;
}
.ip-display {
	color: #3498db;
	font-size: 1.3em;
	font-weight: bold;
}
.chart-container {
	position: relative;
	padding: 30px;
	background: #f8f9fa;
	border-radius: 12px;
	margin-top: 30px;
	min-height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px dashed #ccc;
}
.chart-container img {
	width: 100%;
	border-radius: 8px;
	display: none;
}
.loading {
	font-size: 1.5em;
	text-align: center;
	color: #2c3e50;
}
.message {
	font-size: 1.5em;
	text-align: center;
	color: #e74c3c;
	font-weight: bold;
	display: none;
}
.spinner {
	margin-top: 20px;
	width: 40px;
	height: 40px;
	border: 4px solid #3498db;
	border-top-color: transparent;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin-left: auto;
	margin-right: auto;
}
.annotation-section {
	margin-top: 10px;
	text-align: left;
	font-size: 0.8em;
	color: #555;
}
.beta-tag {
	background: red;
	color: white;
	font-size: 10px;
	padding: 2px 4px;
	border-radius: 3px;
	margin-right: 5px;
}
@keyframes gradientShift {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}
@media (max-width: 768px) {
	p {
                line-height: 1.3;
        }
	.dashboard {
		padding: 20px;
	}
	.header h1 {
		font-size: 2em;
	}
	.chart-container {
		padding: 5px;
		min-height: 300px;
	}
}
.copyright {
	margin-top: 20px;
	text-align: center;
	font-size: 0.9em;
	color: #888;
}