/* Screen-only toolbar for the site's CV page (hidden when printing/exporting) */
.toolbar {
    max-width: 900px;
    margin: 0 auto;
    padding: 14px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
}
.toolbar a.back {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 0.95rem;
}
.toolbar a.back:hover { color: #000000; }
.toolbar .download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #333333;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 10px 20px;
    border-radius: 4px;
    transition: background 0.15s;
}
.toolbar .download-btn:hover { background: #000000; }

@media (max-width: 700px) {
    .toolbar { padding: 14px 20px; }
}

@media print {
    .toolbar { display: none; }
}
