/* CV Template Styling */
.cv-template {
    width: 8.5in;
    min-height: auto;
    padding: 0.4in;
    padding-bottom: 0.3in;
    background: white;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 10pt;
    color: #18181b;
    border: 1px solid #d4d4d8;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    --line-height-level: 1.3;
    --paragraph-spacing-level: 8pt;
    line-height: var(--line-height-level);
    transition: all 0.2s ease;
}

/* Spacing Levels for Subtle Page-Fill Illusion */
.cv-template.spacing-compact {
    --line-height-level: 1.3;
    --paragraph-spacing-level: 8pt;
}

.cv-template.spacing-medium {
    --line-height-level: 1.4;
    --paragraph-spacing-level: 10pt;
}

.cv-template.spacing-full {
    --line-height-level: 1.5;
    --paragraph-spacing-level: 12pt;
}

.cv-template h1 {
    font-size: 18pt;
    margin: 0 0 6pt 0;
    color: #f97316;
    font-weight: bold;
}

.cv-template h2 {
    font-size: 12pt;
    margin: 12pt 0 6pt 0;
    padding-bottom: 6pt;
    border-bottom: 1px solid #f97316;
    color: #18181b;
    font-weight: bold;
}

.cv-template h3 {
    font-size: 11pt;
    margin: 10pt 0 3pt 0;
    color: #4b5563;
    font-weight: bold;
}

.cv-template p {
    margin: 0 0 var(--paragraph-spacing-level) 0;
}

.cv-template ul,
.cv-template ol {
    margin: 0 0 var(--paragraph-spacing-level) 0;
    padding: 0;
    list-style: none;
}

.cv-template li {
    margin: 2pt 0 2pt 0;
    line-height: var(--line-height-level);
    position: relative;
    padding-left: 1.2em;
}

.cv-template ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #f97316;
    font-weight: bold;
}

.cv-template ol {
    counter-reset: item;
}

.cv-template ol li {
    counter-increment: item;
}

.cv-template ol li::before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    color: #f97316;
    font-weight: bold;
}

.cv-template strong {
    color: #0f172a;
    font-weight: 600;
}

.cv-template em {
    color: #6b7280;
}

.cv-template a {
    color: #f97316;
    text-decoration: none;
}

.cv-template a:hover {
    text-decoration: underline;
}

/* Preview scaling */
@media screen and (max-width: 768px) {
    .cv-template {
        width: 8.5in;
    }
}

@media screen and (max-width: 900px) {
    .cv-template {
        width: 8.5in;
    }
}
