* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --tumblr-pink: #ffb3d9;
    --tumblr-blue: #b3d9ff;
    --tumblr-purple: #d9b3ff;
    --tumblr-yellow: #fff4b3;
    --tumblr-green: #b3ffd9;
    --cozy-beige: #f0ebe3;
    --cozy-cream: #faf8f3;
    --cozy-brown: #8b7355;
    --cozy-tan: #d4c4a8;
    --soft-gray: #e8e3d8;
    --text-soft: #6b5d4f;
    --text-dark: #4a3f35;
    --border-soft: #ddd4c4;
    --shadow-soft: 0 2px 8px rgba(139, 115, 85, 0.15);
    --shadow-cozy: 0 4px 12px rgba(139, 115, 85, 0.2);
}

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--cozy-beige);
    min-height: 100vh;
    padding: 20px;
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Toolbar */
.toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
    margin-bottom: 30px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.toolbar-left {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.filegnome-logo-left {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(0);
}

.toolbar-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    font-family: 'Nunito', sans-serif;
}

.toolbar-btn {
    padding: 8px 16px;
    border: 2px solid var(--border-soft);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.toolbar-btn:hover {
    background: white;
    border-color: var(--cozy-brown);
    box-shadow: var(--shadow-soft);
}

.dropdown-arrow {
    font-size: 0.7rem;
    opacity: 0.7;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    background: var(--cozy-cream);
    border: 2px solid var(--border-soft);
    border-radius: 12px;
    box-shadow: var(--shadow-cozy);
    min-width: 180px;
    padding: 8px 0;
    display: none;
    z-index: 1000;
}


.dropdown-menu.show {
    display: block;
}

.dropdown-item {
    width: 100%;
    padding: 10px 20px;
    border: none;
    background: transparent;
    color: var(--text-dark);
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.8);
    color: var(--cozy-brown);
}

/* Help Modal */
.help-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.help-modal.show {
    opacity: 1;
    pointer-events: all;
}

.help-modal-content {
    background: var(--cozy-cream);
    border-radius: 20px;
    padding: 30px;
    padding-top: 50px;
    max-width: 500px;
    width: 100%;
    box-shadow: var(--shadow-cozy);
    border: 3px solid var(--border-soft);
    position: relative;
}

.help-modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--cozy-brown);
    margin-bottom: 20px;
    font-family: 'Nunito', sans-serif;
    text-align: center;
}

.help-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--text-soft);
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.help-modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
}

.help-modal-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.shoutouts-link {
    color: var(--cozy-brown);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.shoutouts-link:hover {
    color: var(--text-dark);
}

.help-modal-content .btn {
    width: 100%;
    text-align: center;
    text-decoration: none;
    display: block;
}

.main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.section-column-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--cozy-brown);
    margin: 0;
    font-family: 'Nunito', sans-serif;
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-soft);
}

.tooltip-container {
    position: relative;
    display: inline-block;
    cursor: help;
}

.tooltip-icon {
    font-size: 1.2rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.tooltip-container:hover .tooltip-icon {
    opacity: 1;
}

.tooltip-text {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cozy-brown);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
    font-family: 'Nunito', sans-serif;
}

.tooltip-text::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--cozy-brown);
}

.tooltip-container:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

@media (max-width: 1024px) {
    .main-content {
        grid-template-columns: 1fr;
    }
}

.form-section {
    background: var(--cozy-cream);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-cozy);
    border: 2px solid var(--border-soft);
}

.preview-section {
    position: sticky;
    top: 20px;
    background: var(--cozy-cream);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-cozy);
    border: 2px solid var(--border-soft);
}

.form-group {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px dashed var(--border-soft);
}

.form-group:last-of-type {
    border-bottom: none;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    position: relative;
}

.section-title-input {
    font-family: 'Nunito', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cozy-brown);
    background: transparent;
    border: 2px dashed transparent;
    border-radius: 8px;
    padding: 8px 12px;
    width: 100%;
    transition: all 0.3s ease;
}

.section-title-input:hover {
    border-color: var(--border-soft);
    background: rgba(255, 255, 255, 0.5);
}

.section-title-input:focus {
    outline: none;
    border-color: var(--cozy-brown);
    background: rgba(255, 255, 255, 0.8);
}

.section-title-edit {
    font-size: 1.2rem;
    color: var(--text-soft);
    opacity: 0.6;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.section-header:hover .section-title-edit {
    opacity: 1;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-field {
    margin-bottom: 15px;
}

.form-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-soft);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Nunito', sans-serif;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-dark);
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--cozy-brown);
    box-shadow: 0 0 0 4px rgba(139, 115, 85, 0.1);
    background: white;
}

/* Photo Upload */
.photo-upload-field {
    margin-bottom: 20px;
}

.photo-upload-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.photo-preview {
    width: 150px;
    height: 150px;
    border: 3px dashed var(--border-soft);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.6);
    overflow: hidden;
}

.photo-preview:hover {
    border-color: var(--cozy-brown);
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.02);
}

.photo-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-placeholder {
    font-size: 3rem;
    margin-bottom: 5px;
}

.photo-text {
    font-size: 0.9rem;
    color: var(--text-soft);
    font-weight: 500;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: normal;
    margin-top: 8px;
    cursor: pointer;
    font-size: 0.95rem;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Nunito', sans-serif;
    box-shadow: var(--shadow-soft);
}

.btn-primary {
    background: var(--cozy-brown);
    color: white;
}

.btn-primary:hover {
    background: #7a6347;
    box-shadow: var(--shadow-cozy);
}

.btn-secondary {
    background: var(--cozy-tan);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background: #c4b498;
}

.btn-success {
    background: #8b9a7a;
    color: white;
}

.btn-success:hover {
    background: #758064;
    box-shadow: var(--shadow-cozy);
}

.btn-danger {
    background: #c97a7a;
    color: white;
}

.btn-danger:hover {
    background: #b86868;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.action-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px dashed var(--border-soft);
}

.experience-item,
.education-item {
    background: rgba(255, 255, 255, 0.6);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 15px;
    border: 2px solid var(--border-soft);
    position: relative;
}

.remove-btn {
    margin-top: 10px;
}

/* Welcome Overlay */
.welcome-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.welcome-overlay.show {
    opacity: 1;
    pointer-events: all;
}

/* Dragon Dialog Container */
.dragon-dialog-container {
    background: var(--cozy-cream);
    border-radius: 25px;
    padding: 30px;
    box-shadow: var(--shadow-cozy);
    border: 3px solid var(--border-soft);
    max-width: 700px;
    width: 90%;
}

/* Dragon Container */
.dragon-container {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.dragon {
    flex-shrink: 0;
    padding-top: 10px;
}

.dragon-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
}

.speech-bubble {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: var(--shadow-soft);
    border: 2px solid var(--border-soft);
    position: relative;
    flex: 1;
}

.speech-bubble::before {
    content: '';
    position: absolute;
    left: -17px;
    top: 30px;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid var(--border-soft);
    z-index: 1;
}

.speech-bubble::after {
    content: '';
    position: absolute;
    left: -15px;
    top: 30px;
    width: 0;
    height: 0;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-right: 14px solid white;
    z-index: 2;
}

.speech-bubble p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.welcome-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.welcome-features li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1rem;
    color: var(--text-dark);
}

.feature-check::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.2rem;
}

.feature-cross::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: bold;
    font-size: 1.2rem;
}

.welcome-banner {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 10px;
    padding: 12px 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.banner-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.welcome-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Cookie Dialog */
.cookie-dialog {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cookie-dialog.show {
    opacity: 1;
    pointer-events: all;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.modal-footer-link {
    margin-top: 15px;
    text-align: center;
}

.modal-footer-link a {
    color: var(--cozy-brown);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.modal-footer-link a:hover {
    opacity: 1;
}

.re-enable-cookies {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 999;
    background: var(--cozy-cream);
    padding: 10px 15px;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    border: 2px solid var(--border-soft);
}

/* Design Selector */
.design-selector {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-soft);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Nunito', sans-serif;
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.design-selector:focus {
    outline: none;
    border-color: var(--cozy-brown);
    box-shadow: 0 0 0 4px rgba(139, 115, 85, 0.1);
    background: white;
}

.markdown-hint {
    display: block;
    margin-top: 5px;
    font-size: 0.85rem;
    color: var(--text-soft);
    font-style: italic;
}

/* Date picker styling */
.flatpickr-input {
    font-family: 'Nunito', sans-serif;
}

.flatpickr-calendar {
    font-family: 'Nunito', sans-serif;
    border-radius: 12px;
    box-shadow: var(--shadow-cozy);
    border: 2px solid var(--border-soft);
}

.flatpickr-month {
    background: var(--cozy-cream);
    border-radius: 12px 12px 0 0;
}

.flatpickr-day.selected {
    background: var(--cozy-brown);
    border-color: var(--cozy-brown);
}

/* CV Preview Styles */
.cv-preview {
    background: white;
    padding: 0;
    color: #000;
    font-family: 'Times New Roman', Times, serif;
    font-size: 11pt;
    line-height: 1.5;
}

/* Simple Design (German Lebenslauf Style) */
.cv-simple-layout {
    display: block;
    padding: 40px;
}

.cv-modern-layout {
    display: none;
}

.cv-preview.cv-simple .cv-simple-layout {
    display: block;
}

.cv-preview.cv-simple .cv-modern-layout {
    display: none !important;
}

.cv-preview.cv-modern .cv-simple-layout {
    display: none !important;
}

.cv-preview.cv-modern .cv-modern-layout {
    display: flex !important;
}

.cv-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #000;
}

.cv-header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.cv-name-contact {
    flex: 1;
}

.cv-header h1 {
    font-size: 18pt;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cv-contact {
    font-size: 10pt;
    color: #000;
    line-height: 1.8;
}

.cv-contact div {
    margin-bottom: 3px;
}

.cv-photo {
    width: 120px;
    height: 150px;
    border: 1px solid #000;
    overflow: hidden;
    flex-shrink: 0;
}

.cv-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cv-section {
    margin-bottom: 20px;
    page-break-inside: avoid;
}

.cv-section h2 {
    font-size: 12pt;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #000;
    padding-bottom: 3px;
}

.cv-text {
    color: #000;
    line-height: 1.6;
    text-align: justify;
    font-size: 11pt;
}

.experience-entry,
.education-entry {
    margin-bottom: 15px;
    padding-left: 0;
    border-left: none;
    padding-bottom: 10px;
}

.experience-entry:not(:last-child),
.education-entry:not(:last-child) {
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.experience-entry h3,
.education-entry h3 {
    color: #000;
    font-size: 11pt;
    font-weight: bold;
    margin-bottom: 3px;
}

.experience-entry .company,
.education-entry .institution {
    color: #000;
    font-weight: normal;
    font-style: italic;
    margin-bottom: 3px;
    font-size: 11pt;
}

.experience-entry .date,
.education-entry .date {
    color: #000;
    font-size: 10pt;
    font-style: normal;
    margin-bottom: 5px;
}

.experience-entry .description,
.education-entry .description {
    color: #000;
    line-height: 1.5;
    margin-top: 5px;
    font-size: 11pt;
    text-align: justify;
}

.skills-list {
    list-style-type: disc;
    margin-left: 20px;
    padding-left: 0;
    line-height: 1.8;
}

.skills-list li {
    margin-bottom: 3px;
    color: #000;
    font-size: 11pt;
}

/* Modern Design Styles */
    .cv-modern-layout {
        display: flex;
        font-family: 'Arial', 'Helvetica', sans-serif;
    }

.cv-modern-sidebar {
    width: 280px;
    background: #667eea;
    color: white;
    padding: 40px 30px;
    flex-shrink: 0;
}

.cv-photo-modern {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.cv-photo-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cv-modern-summary {
    color: white;
}

.cv-modern-summary h2 {
    font-size: 14pt;
    font-weight: bold;
    margin-bottom: 15px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 8px;
}

.cv-modern-summary .cv-text {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    font-size: 10.5pt;
}

.cv-modern-main {
    flex: 1;
    padding: 40px;
    background: white;
}

.cv-modern-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid #667eea;
}

.cv-modern-header h1 {
    font-size: 28pt;
    font-weight: bold;
    margin-bottom: 15px;
    color: #667eea;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cv-contact-modern {
    font-size: 10.5pt;
    color: #555;
    line-height: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.cv-contact-modern div {
    margin-bottom: 0;
}

.cv-section-modern {
    margin-bottom: 25px;
    page-break-inside: avoid;
}

.cv-section-modern h2 {
    font-size: 14pt;
    font-weight: bold;
    margin-bottom: 15px;
    color: #667eea;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #667eea;
    padding-bottom: 8px;
}

.cv-section-modern .cv-text {
    color: #333;
    line-height: 1.7;
}

.cv-section-modern .experience-entry,
.cv-section-modern .education-entry {
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 3px solid #667eea;
    padding-bottom: 15px;
}

.cv-section-modern .experience-entry:not(:last-child),
.cv-section-modern .education-entry:not(:last-child) {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.cv-section-modern .experience-entry h3,
.cv-section-modern .education-entry h3 {
    color: #333;
    font-size: 12pt;
    font-weight: bold;
    margin-bottom: 5px;
}

.cv-section-modern .experience-entry .company,
.cv-section-modern .education-entry .institution {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 5px;
    font-style: normal;
}

.cv-section-modern .experience-entry .date,
.cv-section-modern .education-entry .date {
    color: #888;
    font-size: 10pt;
    font-style: normal;
    margin-bottom: 8px;
}

.cv-section-modern .experience-entry .description,
.cv-section-modern .education-entry .description {
    color: #555;
    line-height: 1.6;
    margin-top: 8px;
}

.cv-section-modern .skills-list {
    list-style-type: disc;
    margin-left: 20px;
    padding-left: 0;
    line-height: 1.8;
}

.cv-section-modern .skills-list li {
    margin-bottom: 5px;
    color: #333;
    font-size: 11pt;
}

/* Empty state */
.empty-state {
    color: #666;
    font-style: italic;
    text-align: left;
    padding: 10px 0;
    font-size: 11pt;
}

/* Print styles for PDF */
@media print {
    body {
        background: white;
        padding: 0;
    }
    
    .form-section,
    .cookie-dialog,
    .re-enable-cookies,
    .action-buttons,
    header {
        display: none;
    }
    
    .preview-section {
        position: static;
        max-height: none;
        box-shadow: none;
        padding: 0;
        background: white;
        border: none;
    }
    
    .cv-preview {
        padding: 20px;
    }
}

/* Footer */
.footer {
    margin-top: 40px;
    padding: 20px;
    text-align: center;
    border-top: 2px solid var(--border-soft);
}

.footer-links {
    margin-bottom: 15px;
}

.footer-link {
    display: inline-block;
    color: var(--cozy-brown);
    text-decoration: none;
    font-weight: 600;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--text-dark);
    text-decoration: underline;
}

.footer-button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    padding: 0;
}

.footer-button:hover {
    text-decoration: underline;
}

.footer-privacy {
    font-size: 0.9rem;
    color: var(--text-soft);
    line-height: 1.6;
    margin: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
