/* Custom Styles for ResumeAI override */

/* CV PDF preview uses A4 proportions usually */
@media print {
    body * {
        visibility: hidden;
    }
    #cv-preview, #cv-preview * {
        visibility: visible;
    }
    #cv-preview {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        margin: 0;
        padding: 0;
        box-shadow: none;
    }
}

/* Custom scrollbar for sidebar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* A4 Print Aspect Ratio constraints for preview */
@media (min-width: 768px) {
    #cv-preview {
        aspect-ratio: 1 / 1.414;
        height: auto;
    }
}
