/* Useful Links Specific Styles */
	.quick-filter-btn {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		padding: 0.7rem 1.2rem;
		background-color: #f0f4f8;
		border: 2px solid #d1d9e6;
		border-radius: 30px;
		font-weight: 600;
		color: #4a5568;
		cursor: pointer;
		transition: all 0.3s ease;
		font-size: 0.9rem;
	}
	
	.quick-filter-btn:hover,
	.quick-filter-btn.active {
		background-color: #2a5298;
		color: white;
		border-color: #2a5298;
	}
	
	.quick-filter-btn i {
		font-size: 0.9em;
	}
	
	.link-card {
		background-color: white;
		border-radius: 12px;
		padding: 1.5rem;
		box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
		transition: all 0.3s ease;
		height: 100%;
		display: flex;
		flex-direction: column;
		border-left: 4px solid #2a5298;
	}
	
	.link-card:hover {
		transform: translateY(-5px);
		box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	}
	
	.link-card.featured {
		border-left-color: #ffcc00;
		background: linear-gradient(135deg, #fffaf0 0%, #fff 100%);
	}
	
	.link-card-header {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		margin-bottom: 1rem;
	}
	
	.link-icon {
		font-size: 1.8rem;
		color: #2a5298;
		width: 50px;
		height: 50px;
		background-color: #f0f4f8;
		border-radius: 10px;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
	}
	
	.link-icon.featured {
		background-color: #fff8e1;
		color: #ff9900;
	}
	
	.link-category-badge {
		padding: 0.3rem 0.8rem;
		border-radius: 20px;
		font-size: 0.75rem;
		font-weight: 600;
		display: inline-block;
		margin-bottom: 0.5rem;
	}
	
	.badge-transport { background-color: #36A2EB; color: white; }
	.badge-accommodation { background-color: #FF6384; color: white; }
	.badge-attractions { background-color: #4BC0C0; color: white; }
	.badge-tickets { background-color: #9966FF; color: white; }
	.badge-food { background-color: #FF9F40; color: white; }
	.badge-official { background-color: #2a5298; color: white; }
	.badge-info { background-color: #8AC926; color: white; }
	
	.link-title {
		color: #2a5298;
		font-size: 1.3rem;
		margin-bottom: 0.5rem;
		flex: 1;
		margin-left: 1rem;
	}
	
	.link-description {
		color: #555;
		font-size: 0.95rem;
		line-height: 1.5;
		margin-bottom: 1.5rem;
		flex: 1;
	}
	
	.link-url {
		color: #666;
		font-size: 0.85rem;
		margin-bottom: 1.5rem;
		word-break: break-all;
		background-color: #f8fafc;
		padding: 0.8rem;
		border-radius: 6px;
		border-left: 3px solid #e2e8f0;
	}
	
	.link-actions {
		display: flex;
		gap: 10px;
		margin-top: auto;
	}
	
	.link-btn {
		padding: 0.7rem 1rem;
		background-color: #2a5298;
		color: white;
		border: none;
		border-radius: 5px;
		font-weight: 600;
		cursor: pointer;
		transition: background-color 0.3s ease;
		text-align: center;
		text-decoration: none;
		font-size: 0.9rem;
		flex: 1;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 8px;
	}
	
	.link-btn:hover {
		background-color: #1e3c72;
	}
	
	.link-btn.secondary {
		background-color: #f0f4f8;
		color: #2a5298;
	}
	
	.link-btn.secondary:hover {
		background-color: #e2e8f0;
	}
	
	.link-btn.featured-btn {
		background-color: #ff9900;
	}
	
	.link-btn.featured-btn:hover {
		background-color: #e68900;
	}
	
	.visited {
		opacity: 0.8;
	}
	
	.visited .link-title {
		color: #666;
	}
	
	.visited .link-icon {
		color: #999;
	}
	
	@media (max-width: 768px) {
		.links-grid {
			grid-template-columns: 1fr !important;
		}
		
		.link-card-header {
			flex-direction: column;
			align-items: flex-start;
		}
		
		.link-title {
			margin-left: 0;
			margin-top: 1rem;
		}
		
		.links-search-filter > div {
			flex-direction: column;
		}
		
		.links-search-filter > div > div {
			min-width: 100% !important;
		}
		
		.quick-filter-btn {
			margin-bottom: 0.5rem;
		}
	}