body {
    background: #222;
    color: #e5e5e5;
}

.resume-container {
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.resume-container h1 {
    color: #007ced;
    margin-bottom: 2rem;
}

.resume-actions {
    margin-bottom: 2rem;
    text-align: right;
}

.download-btn {
    display: inline-block;
    background: #007ced;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
}

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

.download-btn i {
    margin-right: 0.5rem;
}

.resume-embed {
    background: #333;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.resume-embed iframe {
    border: none;
    width: 100%;
    height: 800px;
    background: #fff;
}