/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #000000;
    line-height: 1.5;
    background-color: #ffffff;
}

a {
    color: blue;
    text-decoration: underline;
}

/* CV Container (A4 Page styling) */
.cv-container {
    background: #ffffff;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 50px;
    box-shadow: none;
}

/* Header */
.cv-header {
    margin-bottom: 25px;
}

.name {
    font-size: 2.2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 5px;
}

.title {
    font-size: 1.1rem;
    font-weight: 400;
    color: #000000;
    margin-bottom: 5px;
}

.contact-info {
    font-size: 0.9rem;
    color: #000000;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.separator {
    color: #000000;
}

/* Sections */
.cv-section {
    margin-bottom: 20px;
}

.section-title {
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
    padding-bottom: 5px;
    border-bottom: 1px solid #000000;
    text-transform: uppercase;
}

.cv-section p {
    font-size: 0.95rem;
    text-align: left;
    margin-bottom: 8px;
}

/* Experience */
.experience-item {
    margin-bottom: 15px;
}

.role {
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 2px;
}

.company-date {
    font-size: 0.95rem;
    color: #000000;
    margin-bottom: 8px;
}

.company-date .company {
    color: #000000;
}

.company-date .date {
    font-style: italic;
}

.experience-list {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 0;
}

.experience-list li {
    font-size: 0.95rem;
    margin-bottom: 5px;
    text-align: left;
}

/* Technical Skills */
.technical-skills p {
    margin-bottom: 8px;
}

/* Education */
.education-list {
    list-style: none;
}

.education-list li {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

/* Footer */
.cv-footer {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9rem;
    font-style: italic;
    color: #000000;
}

/* Print/PDF overrides */
@media print {
    body {
        background-color: white;
    }
    .cv-container {
        box-shadow: none;
        margin: 0;
        padding: 0;
        max-width: 100%;
    }
}
.generating-pdf {
    background: #ffffff;
    box-shadow: none;
    margin: 0;
    padding: 0;
    max-width: 100%;
}
