.download-link {
	display: inline-block;
	margin-bottom: 18px;
	padding: 10px 22px;
	background: #4a90e2;
	color: #fff;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1rem;
	transition: background 0.2s;
	box-shadow: 0 1px 6px rgba(74,144,226,0.08);
}

.download-link:hover {
	background: #357abd;
	color: #fff;
}

body {
	font-family: 'Segoe UI', Arial, sans-serif;
	background: #f4f6f8;
	margin: 0;
	color: #222;
	pointer-events: none;
}

a, a * {
	pointer-events: auto;
}

.resume-container {
	max-width: 800px;
	margin: 0 auto 40px auto;
	background: #fff;
	box-shadow: 0 2px 16px rgba(0,0,0,0.08);
	border-radius: 10px;
	padding: 40px 32px;
}

.resume-header {
	text-align: center;
	border-bottom: 2px solid #e0e0e0;
	padding-bottom: 18px;
	margin-bottom: 32px;
}

.resume-header h1 {
	margin: 0 0 8px 0;
	font-size: 2.5rem;
	letter-spacing: 1px;
}

.resume-title {
	font-size: 1.2rem;
	color: #4a90e2;
	margin-bottom: 6px;
}

.resume-contact {
	font-size: 1rem;
	color: #666;
}

.resume-section {
	margin-bottom: 32px;
}

.resume-section h2 {
	color: #4a90e2;
	font-size: 1.3rem;
	margin-bottom: 10px;
	border-left: 4px solid #4a90e2;
	padding-left: 10px;
}

.resume-job, .resume-project {
	margin-bottom: 18px;
}

.resume-job h3, .resume-project h3 {
	margin: 0 0 2px 0;
	font-size: 1.1rem;
	color: #222;
}

.resume-company {
	font-weight: 500;
	color: #333;
}

.resume-dates {
	color: #888;
	font-size: 0.98rem;
}

.resume-job ul, .resume-skills, .resume-project ul {
	margin: 8px 0 0 18px;
	padding: 0;
}

.resume-job ul li, .resume-skills li, .resume-project ul li {
	font-size: 1rem;
}

.resume-job ul li, .resume-project ul li {
	margin-bottom: 6px
}

.resume-skills {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	list-style: disc inside;
}

footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
    color: #666;
    font-size: 0.85rem;
    font-style: italic;
}

@page {
    size: letter;
    margin: 10mm; 
}

@media print {
    body {
        margin: 0; 
    }
    
    html {
        font-size: 14px; 
    }

    #resume-link, footer {
        display: none !important;
    }

    .resume-job {
        page-break-inside: avoid;
        break-inside: avoid;
		padding-top: 10px;
    }
}

@media (max-width: 600px) {
	.resume-container {
		padding: 18px 6px;
	}
	.resume-header h1 {
		font-size: 1.5rem;
	}
	.resume-section h2 {
		font-size: 1.1rem;
	}
}
