/* ==========================================================================
   Cvpinik Premium Stylesheet - Adobe & Microsoft Dynamic Multi-page Standards
   ========================================================================== */

body {
    background-color: #f1f5f9;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

/* Dynamic A4 Canvas (Expands to 2 pages naturally if content is rich) */
#cv-print-area {
    width: 800px;
    min-height: 1130px; /* Base 1-page height */
    height: auto; /* Dynamically expands to Page 2 if needed */
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    position: relative;
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    border-radius: 4px;
    flex-shrink: 0; /* Prevents container from shrinking on mobile screens */
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

@media print {
    body {
        background-color: #ffffff !important;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }
    .no-print {
        display: none !important;
    }
    #cv-print-area {
        box-shadow: none !important;
        border: none !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        transform: none !important;
    }
}

.skill-tag {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 500;
    display: inline-block;
    margin: 2px;
}

.cv-profile-img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #ffffff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}