/* Табы */
.nav-tabs-pdf {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    padding-bottom: 10px;
}

.nav-tab-pdf {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 4px;
    transition: all 0.3s;
    cursor: pointer;
}

.nav-tab-pdf:hover {
    color: #1a6fb5;
    background: #f5f5f5;
}

.nav-tab-pdf.active {
    color: #1a6fb5;
    background: #e8f4f8;
    font-weight: 500;
}

/* Область просмотра PDF */
.pdf-viewer {
    width: 100%;
    height: 700px;
    background: #f5f5f5;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.pdf-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Мобилки — увеличиваем высоту iframe для удобства */
@media (max-width: 768px) {
    .nav-tab-pdf {
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .pdf-viewer {
        height: 500px;
    }
}
