body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    background: #f5f7fa;
    color: #222;
}

.cv-container {
    width: 100%;
    height: 100%;
}

#pdf-viewer {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #e9eef3;
}

#pdf-viewer iframe {
    width: 95%;
    height: 95%;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Header (optional if you want a top bar) */
.cv-header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 20px;
    background: #36494E;
    color: white;
    font-size: 1.2rem;
    z-index: 10;
}

/* Back button */
.back-btn {
    color: #A9CEF4;
    text-decoration: none;
    font-weight: bold;
    transition: 0.2s ease;
}

.back-btn:hover {
    color: #d3e9ff;
}

/* Mobile tweaks */
@media (max-width: 768px) {
    #pdf-viewer iframe {
        width: 100%;
        height: 100%;
        border-radius: 0;
        box-shadow: none;
    }
}