/* Resume-specific styles */
.resume-container {
    width: 100vw;
    height: 100vh;
    position: relative;
    background: #f5f5f5;
    overflow: hidden;
}

.resume-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e5e5;
    padding: 8px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.resume-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.back-btn, .download-btn {
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
}

.back-btn {
    background: #f0f0f0;
    color: #333;
}

.back-btn:hover {
    background: #e0e0e0;
}

.download-btn {
    background: #007acc;
    color: white;
}

.download-btn:hover {
    background: #0056a3;
}

.pdf-viewer {
    width: 100%;
    height: 100vh;
    border: none;
    padding-top: 60px;
    box-sizing: border-box;
}

.pdf-fallback {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    padding: 40px;
    background: white;
}

.pdf-fallback h2 {
    margin-bottom: 20px;
    color: #333;
}

.pdf-fallback p {
    margin-bottom: 30px;
    color: #666;
    max-width: 500px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .resume-header {
        padding: 6px 15px;
    }
    
    .resume-nav {
        gap: 15px;
    }
    
    .back-btn, .download-btn {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .pdf-viewer {
        padding-top: 50px;
    }
}
