/*home.css*/

.header-section {
	/* background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%); */
	background: linear-gradient(135deg, #f44336a1 0%, #1e3a8a 100%);
	padding: 40px 0;
	position: relative;
	overflow: hidden;
}

.header-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background:
		url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
		repeat;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	z-index: 1;
}

.header-content {
	text-align: center;
	color: white;
}

.title {
	font-size: 2.25rem;
	font-weight: 700;
	margin-bottom: 8px;
	letter-spacing: -0.025em;
	color: white;
}

.subtitle {
	font-size: 1.125rem;
	font-weight: 400;
	opacity: 0.9;
	margin-bottom: 0px;
}

.gov-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.15);
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 0.875rem;
	font-weight: 500;
	backdrop-filter: blur(10px);
}

.main-content {
	padding: 60px 0;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr); /* 4 equal columns */
	gap: 30px;
	margin-top: 20px;
	padding: 0px 20px;
}

.stat-card {
	background: white;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 10px 20px;
	position: relative;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	border-left: 5px solid transparent;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.partners-card {
	border-left: 6px solid #059669;
} /* green */
.fta-card {
	border-left: 6px solid #dc2626;
} /* red */
.commodities-card {
	border-left: 6px solid #f59e0b;
} /* amber */
.regions-card {
	border-left: 6px solid #3b82f6;
} /* blue */
.export-comm-card {
	border-left: 6px solid #10b981;
} /* teal */
.export-dest-card {
	border-left: 6px solid #6366f1;
} /* indigo */
.import-comm-card {
	border-left: 6px solid #ef4444;
} /* rose */
.import-dest-card {
	border-left: 6px solid #8b5cf6;
} /* violet */
.stat-card:hover {
	box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
	transform: translateY(-2px);
}

.card-header {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 24px;
}

.card-icon {
	width: 48px;
	height: 48px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	color: white;
	flex-shrink: 0;
}

.regions-card .card-icon {
	background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.partners-card .card-icon {
	background: linear-gradient(135deg, #059669, #047857);
}

.fta-card .card-icon {
	background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.regions-card .card-icon {
	background: linear-gradient(135deg, #3b82f6, #1d4ed8);
	/* blue shades */
}

.partners-card .card-icon {
	background: linear-gradient(135deg, #059669, #047857);
	/* green shades */
}

.fta-card .card-icon {
	background: linear-gradient(135deg, #dc2626, #b91c1c); /* red shades */
}

.commodities-card .card-icon {
	background: linear-gradient(135deg, #f59e0b, #b45309);
	/* amber → brown */
}

.export-comm-card .card-icon {
	background: linear-gradient(135deg, #10b981, #059669);
	/* teal shades */
}

.export-dest-card .card-icon {
	background: linear-gradient(135deg, #6366f1, #4338ca);
	/* indigo shades */
}

.import-comm-card .card-icon {
	background: linear-gradient(135deg, #ef4444, #b91c1c);
	/* rose/red shades */
}

.import-dest-card .card-icon {
	background: linear-gradient(135deg, #8b5cf6, #6d28d9);
	/* violet/purple shades */
}

.card-title2 {
	font-size: 1.1rem;
	font-weight: 600;
	color: #1e293b;
	line-height: 1.4;
}

.card-value {
	font-size: 3rem;
	font-weight: 700;
	color: #1e293b;
	letter-spacing: -0.025em;
}

.card-label {
	font-size: 0.875rem;
	color: #64748b;
	font-weight: 500;
	margin-bottom: 0px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.card-description {
	font-size: 0.95rem;
	color: #475569;
	line-height: 1.5;
	margin-bottom: 20px;
	display: none;
}

.progress-section {
	margin-top: 0px;
}

.progress-label {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.875rem;
	color: #64748b;
	margin-bottom: 8px;
}

.progress-bar {
	width: 100%;
	height: 6px;
	background: #f1f5f9;
	border-radius: 3px;
	overflow: hidden;
}

.progress-fill {
	height: 100%;
	border-radius: 3px;
	transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
	animation: progressAnimation 2s ease-out 1s both;
}

.regions-card .progress-fill {
	background: linear-gradient(90deg, #3b82f6, #1d4ed8);
	width: 88%;
}

.partners-card .progress-fill {
	background: linear-gradient(90deg, #059669, #047857);
	width: 95%;
}

.fta-card .progress-fill {
	background: linear-gradient(90deg, #dc2626, #b91c1c);
	width: 72%;
}

@
keyframes progressAnimation {from { width:0;
	
}

}
.footer-section {
	background: #1e293b;
	padding: 40px 0;
	text-align: center;
	color: #94a3b8;
}

.footer-section h4 {
	color: white;
	margin-bottom: 8px;
	font-size: 1.125rem;
}

.footer-links {
	display: flex;
	flex-direction: column;
}

.footer-links a {
	color: #94a3b8;
	text-decoration: none;
	font-size: 0.875rem;
	transition: color 0.2s;
}

.footer-links a:hover {
	color: #1e40af;
}

/* Icons using CSS - removed */

/* Responsive Design */
@media ( max-width : 768px) {
	.title {
		font-size: 1.875rem;
	}
	.subtitle {
		font-size: 1rem;
	}
	.stats-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.stat-card {
		padding: 24px 20px;
	}
	.card-value {
		font-size: 2.5rem;
	}
	.footer-links {
		gap: 16px;
		flex-direction: column;
	}
}

@media ( max-width : 480px) {
	.header-section {
		padding: 30px 0;
	}
	.main-content {
		padding: 40px 0;
	}
	.title {
		font-size: 1.5rem;
	}
	.card-header {
		flex-direction: column;
		text-align: center;
		gap: 12px;
	}
	.card-value {
		font-size: 2rem;
	}
	.stats-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
}

/* Accessibility */
@media ( prefers-reduced-motion : reduce) {
	.stat-card, .progress-fill {
		transition: none;
		animation: none;
	}
}

/* Print styles */
@media print {
	.header-section {
		background: white !important;
		color: black !important;
	}
	.stat-card {
		border: 2px solid #000 !important;
		break-inside: avoid;
	}
}

/* ================================ */
.map-container {
	position: relative;
	height: 100vh;
	width: 100%;
	padding: 10px;
}

#worldMap {
	height: 100%;
	width: 100%;
}

.map-title {
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1000;
	background: rgba(255, 255, 255, 0.95);
	padding: 10px 10px;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	text-align: center;
}

.map-title h1 {
	margin: 0 0 5px 0;
	font-size: 0.8em;
	color: #2c3e50;
}

.map-title p {
	margin: 0;
	color: #7f8c8d;
	font-size: 0.5em;
}

.legend {
	position: absolute;
	bottom: 30px;
	left: 30px;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.95);
	padding: 10px;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	min-width: 200px;
}

.legend h3 {
	margin: 0 0 15px 0;
	color: #2c3e50;
	font-size: 1.2em;
}

.legend-item {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
	font-weight: 500;
	font-size: 12px;
}

.legend-icon {
	font-size: 12px;
	width: 20px;
	text-align: center;
}

.ongoing-icon {
	color: #e74c3c;
}

.concluded-icon {
	color: #27ae60;
}

.stats {
	position: absolute;
	top: 30px;
	right: 30px;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.95);
	padding: 10px;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	text-align: center;
	min-width: 200px;
}

.stat-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 0px;
	padding: 5px 0;
}

.stat-label {
	color: #7f8c8d;
	font-size: 14px;
}

.stat-value {
	font-weight: bold;
	font-size: 12px;
}

.ongoing-stat {
	color: #e74c3c;
}

.concluded-stat {
	color: #27ae60;
}

.custom-marker {
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
	border: 3px solid white;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.ongoing-marker {
	background-color: #e74c3c;
}

.concluded-marker {
	background-color: #27ae60;
}

.leaflet-popup-content {
	text-align: center;
	min-width: 200px;
}

.popup-title {
	font-size: 1.2em;
	font-weight: bold;
	margin-bottom: 8px;
	color: #2c3e50;
}

.popup-status {
	padding: 5px 15px;
	border-radius: 20px;
	color: white;
	font-size: 0.9em;
	display: inline-block;
}

.popup-ongoing {
	background-color: #e74c3c;
}

.popup-concluded {
	background-color: #27ae60;
}

/* ===================== */
.alert-box {
	background: linear-gradient(135deg, #f44336a1 0%, #1e3a8a 100%);
	border: none;
	border-radius: 16px;
	padding: 14px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
	animation: slideFadeIn 0.8s ease-out;
	position: relative;
	overflow: hidden;
}

.alert-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border-radius: 16px;
	pointer-events: none;
}

.alert-box * {
	position: relative;
	z-index: 1;
}

@
keyframes slideFadeIn { 0% {
	opacity: 0;
	transform: translateY(20px) scale(0.98);
}

100
%
{
opacity
:
1;
transform
:
translateY(
0
)
scale(
1
);
}
}
.alert-header {
	border-bottom: 2px solid rgba(255, 255, 255, 0.2);
	padding-bottom: 16px;
	margin-bottom: 20px;
	color: #ffffff;
	font-weight: 700;
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.alert-header .accent-line {
	display: inline-block;
	width: 40px;
	height: 4px;
	background: linear-gradient(90deg, #ffffff 0%, #ff6b6b 100%);
	margin-right: 12px;
	border-radius: 2px;
}

.alert-header i {
	font-size: 22px;
	color: #ffffff;
	margin-right: 10px;
	animation: pulse 2s infinite;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

@
keyframes pulse { 0%, 100% {
	transform: scale(1);
	opacity: 1;
}

50
%
{
transform
:
scale(
1.1
);
opacity
:
0.8;
}
}
.alert-item {
	margin-bottom: 5px;
	transition: all 0.3s ease;
	border-radius: 12px;
	padding: 16px;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(5px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	text-align: left;
}

.alert-item:hover {
	background: rgba(255, 255, 255, 0.15);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
	border-color: rgba(255, 255, 255, 0.2);
}

.alert-item:last-child {
	margin-bottom: 0;
}

.alert-item h6 {
	font-weight: 700;
	margin-bottom: 10px;
	color: #ffffff;
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
}

.alert-item .icon-container {
	width: 20px;
	height: 20px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.alert-item .icon-container::before {
	content: '★';
	font-size: 12px;
}

.alert-item p {
	margin: 0;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.5;
}

.text-underline {
	display: inline;
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 3px;
	text-decoration-color: rgba(255, 255, 255, 0.6);
	transition: text-decoration-color 0.3s ease;
}

.alert-item:hover .text-underline {
	text-decoration-color: #ffffff;
}

.alert-item a {
	text-decoration: none !important;
	color: inherit;
}

.alert-item a:hover {
	color: inherit;
}

.alert-item strong a {
	color: #ffffff;
	font-weight: 700;
	transition: all 0.3s ease;
	padding: 2px 6px;
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.1);
}

.alert-item strong a:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-1px);
}

/* Enhanced mobile responsiveness */
@media ( max-width : 768px) {
	.alert-box {
		padding: 20px;
		margin: 10px;
	}
	.alert-header {
		font-size: 18px;
		flex-wrap: wrap;
	}
	.alert-header .accent-line {
		width: 100%;
		margin: 0 0 10px 0;
	}
	.alert-item {
		padding: 14px;
	}
}

/* Additional animation for icons */
.alert-item .icon-container {
	animation: iconFloat 3s ease-in-out infinite;
}

@
keyframes iconFloat { 0%, 100% {
	transform: translateY(0px);
}

50
%
{
transform
:
translateY(
-2px
);
}
}

/* Subtle glow effect */
.alert-box {
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 0 0 1px
		rgba(255, 255, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* ================================ */

/* General Styling */
.table-container {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	margin: 20px;
	color: #333;
}

.table-container h2 {
	text-align: center;
	margin-bottom: 5px;
}

.table-container p {
	text-align: center;
	font-size: 0.9em;
	color: #777;
	margin-top: 0;
	margin-bottom: 20px;
}

.responsive-trade-table {
	width: 100%;
	border-collapse: collapse;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Table Headers */
.responsive-trade-table th {
	background-color: #f2f2f2;
	font-weight: 600;
	/* text-align: left; */
	padding: 12px 15px;
	border-bottom: 2px solid #ddd;
}

/* Table Cells */
.responsive-trade-table td {
	padding: 12px 15px;
	border-bottom: 1px solid #e0e0e0;
}

.responsive-trade-table tbody tr:nth-child(even) {
	background-color: #f9f9f9;
}

.responsive-trade-table tbody tr td:first-child {
	text-align: left;
}

.responsive-trade-table tbody tr:hover {
	background-color: #f1f1f1;
}

/* Data-specific styling */
td[data-label*="Country"] {
	font-weight: 500;
}

.surplus {
	color: #28a745; /* Green */
	font-weight: bold;
}

.deficit {
	color: #dc3545; /* Red */
	font-weight: bold;
}

/* --- Responsive Design for Mobile --- */
@media ( max-width : 768px) {
	.responsive-trade-table thead {
		/* Hide the original table header on mobile */
		display: none;
	}
	.responsive-trade-table, .responsive-trade-table tbody,
		.responsive-trade-table tr, .responsive-trade-table td {
		display: block;
		width: 100%;
	}
	.responsive-trade-table tr {
		margin-bottom: 15px;
		border: 1px solid #ddd;
		border-radius: 5px;
		overflow: hidden;
	}
	.responsive-trade-table td {
		text-align: right; /* Align data to the right */
		padding-left: 50%; /* Make space for the label */
		position: relative;
		border-bottom: 1px solid #eee;
	}
	.responsive-trade-table td:last-child {
		border-bottom: none;
	}
	.responsive-trade-table td::before {
		/* Use the data-label for the pseudo-element content */
		content: attr(data-label);
		position: absolute;
		left: 10px;
		width: 45%;
		padding-right: 10px;
		font-weight: bold;
		text-align: left;
	}

	/* First cell acts as the card header */
	.responsive-trade-table td:first-child {
		background-color: #f2f2f2;
		font-size: 1.1em;
		text-align: center;
		padding-left: 0;
	}
	.responsive-trade-table td:first-child::before {
		content: '';
	}
}

.section-heading-bg {
	background: linear-gradient(135deg, #f44336a1 0%, #1e3a8a 100%);;
	color: #fff;
	padding-top: 10px;
	border-radius: 15px;
	margin: 10px 20px;
}

.gradient-text {
	background: linear-gradient(135deg, #f44336a1 0%, #1e3a8a 100%);
	-webkit-background-clip: text; /* For Safari/Chrome */
	-webkit-text-fill-color: transparent; /* For Safari/Chrome */
	background-clip: text; /* Standard property */
	color: transparent;
	/* Fallback for browsers that don't support background-clip */
	font-size: 40px;
	font-weight: 700;
}

/* ============================================= */
.links-section {
	padding-top: 1rem;
	padding-bottom: 3rem;
}

.link-card {
	min-height: 6.5rem;
	text-decoration: none;
	color: inherit;
	display: flex;
	border-radius: 0.75rem;
	/* border: 1px solid #1e3a8a; */
	transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.link-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.link-card .card-body {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.link-card .icon {
	width: 32px;
	height: 32px;
	color: #4f46e5; /* Indigo color */
}

.link-card .link-text {
	font-weight: 600;
	color: #212529;
	transition: color 0.2s;
}

.link-card:hover .link-text {
	color: #4f46e5; /* Indigo color on hover */
}

:root {
	--primary-blue: #2563eb;
	--secondary-blue: #3b82f6;
	--success-green: #10b981;
	--danger-red: #ef4444;
	--neutral-gray: #6b7280;
	--light-gray: #f8fafc;
	--border-color: #e2e8f0;
	--shadow-color: rgba(0, 0, 0, 0.1);
}

body {
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	min-height: 100vh;
}

.dashboard-container {
	background: white;
	border-radius: 20px;
	box-shadow: 0 20px 40px var(--shadow-color);
	padding: 2rem;
	margin: 2rem auto;
	max-width: 1200px;
}

.dashboard-header {
	text-align: center;
	margin-bottom: 3rem;
}

.dashboard-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--primary-blue);
	margin-bottom: 0.5rem;
}

.dashboard-subtitle {
	color: var(--neutral-gray);
	font-size: 1.1rem;
}

.indices-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 1.5rem;
	padding: 1rem 0;
}

.country-card {
	background: white;
	border-radius: 16px;
	border: 1px solid var(--border-color);
	padding: 1.5rem;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.country-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--primary-blue),
		var(--secondary-blue));
}

.country-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px var(--shadow-color);
	border-color: var(--primary-blue);
}

.country-header {
	display: flex;
	align-items: center;
	margin-bottom: 1.5rem;
}

.flag-container {
	width: 48px;
	height: 32px;
	border-radius: 8px;
	overflow: hidden;
	margin-right: 1rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.flag-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.country-name {
	font-size: 1.4rem;
	font-weight: 600;
	color: #1f2937;
	margin: 0;
}

.indices-container {
	background: var(--light-gray);
	border-radius: 12px;
	padding: 1.5rem;
	/* margin-bottom: 1rem; */
}

.indices-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	border-bottom: 2px solid var(--border-color);
}

.indices-row:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.index-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex: 1;
}

.index-label {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--neutral-gray);
	min-width: 70px;
	position: relative;
}

.index-label::after {
	content: '';
	position: absolute;
	right: -0.5rem;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
	height: 8px;
	border-radius: 50%;
}

.export-label::after {
	background: var(--primary-blue);
}

.import-label::after {
	background: var(--secondary-blue);
}

.index-value {
	font-size: 1.6rem;
	font-weight: 700;
	color: #1f2937;
	min-width: 60px;
}

.index-change {
	display: flex;
	align-items: center;
	font-size: 0.9rem;
	font-weight: 600;
	gap: 0.25rem;
	margin-left: auto;
}

.change-positive {
	color: var(--success-green);
}

.change-negative {
	color: var(--danger-red);
}

.change-icon {
	font-size: 0.8rem;
}

.stats-summary {
	background: linear-gradient(135deg, var(--primary-blue),
		var(--secondary-blue));
	border-radius: 16px;
	padding: 2rem;
	color: white;
	text-align: center;
	margin-top: 2rem;
}

/* .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1.5rem;
            margin-top: 1rem;
        } */
.stat-item {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 1rem;
	backdrop-filter: blur(10px);
}

.stat-number {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.stat-label {
	font-size: 0.9rem;
	opacity: 0.9;
}

@media ( max-width : 768px) {
	.dashboard-container {
		margin: 1rem;
		padding: 1.5rem;
	}
	.indices-grid {
		grid-template-columns: 1fr;
	}
	.dashboard-title {
		font-size: 2rem;
	}
	.country-card {
		padding: 1.25rem;
	}
}

.fade-in {
	animation: fadeInUp 0.6s ease-out forwards;
}

@
keyframes fadeInUp {from { opacity:0;
	transform: translateY(30px);
}

to {
	opacity: 1;
	transform: translateY(0);
}

}
.btn-custom2 {
	background: linear-gradient(135deg, #f44336a1 0%, #1e3a8a 100%);
	color: #fff;
	padding: 10px 20px;
}

.btn-custom2:hover {
	background: linear-gradient(135deg, #1e3a8a 0%, #f44336a1 100%);
	color: #fff;
	transform: translateY(-2px);
	transition: all 0.3s ease;
}

.board-logo {
	width: 60px;
	height: auto;
	margin: 0;
	display: block;
}

.link-card .card-body {
	text-align: center;
}

.link-text {
	font-weight: 600;
}