/**
 * CV Templates Styles
 */

.cv-default {
    font-family: Arial, sans-serif;
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
}

.cv-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #333;
}

.cv-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.cv-header h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cv-section {
    margin-bottom: 30px;
}

.cv-section h2 {
    font-size: 20px;
    color: #2271b1;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 2px solid #2271b1;
}

.experience-item,
.education-item {
    margin-bottom: 20px;
}

.experience-item h3,
.education-item h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.company {
    color: #666;
    font-weight: 600;
}

.date {
    color: #999;
    font-size: 14px;
}
