@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
        
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f5f7fa;
}


.resume-preview {
    width: 210mm;
    min-height: 297mm;
    background: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.section-title {
    border-bottom: 2px solid #3b82f6;
    color: #3b82f6;
}

.progress-bar {
    height: 6px;
    background-color: #e0e7ff;
}

.progress-fill {
    height: 100%;
    background-color: #3b82f6;
    transition: width 0.5s ease;
}

.tab-active {
    border-bottom: 3px solid #3b82f6 !important;
    color: #3b82f6 !important;
    font-weight: 500 !important;
    background-color: #eff6ff !important;
    transition: all 0.3s ease !important;
}

button.tab-active {
    background-color: #eff6ff !important;
}

.skill-level {
    width: 100%;
    height: 8px;
    background-color: #e0e7ff;
    border-radius: 4px;
}

.skill-level-fill {
    height: 100%;
    background-color: #3b82f6;
    border-radius: 4px;
}



@media print {
    @page {
        margin: 12;
        size: A4;
    }
    
    body {
        margin: 5;
        padding: 5;
    }
    
    body * {
        visibility: hidden;
    }
    .resume-preview, .resume-preview * {
        visibility: visible;
    }
    .resume-preview {
        position: absolute;
        left: 0;
        top: 0;
        width: 210mm;
        height: 297mm;
        margin: 0;
        padding: 0;
        box-shadow: none;
    }
}

