/* Estilos para o preview de PDF */
.pdf-preview {
    margin-bottom: 20px;
}

.pdf-preview a {
    display: block;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.pdf-preview a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pdf-thumbnail {
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    border-radius: 4px;
    padding: 10px 15px;
    /*border-left: 4px solid #188007;*/
}

.pdf-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
}

.pdf-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pdf-title {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
}

.pdf-details {
    font-size: 12px;
    color: #666;
}

.download-icon {
    margin-left: 10px;
}

.download-icon i {
    font-size: 20px;
    color: #188007;
}

/* Responsivo */
@media (max-width: 768px) {
    .pdf-thumbnail {
        padding: 8px 10px;
    }
    
    .pdf-icon {
        width: 30px;
        height: 30px;
        margin-right: 10px;
    }
    
    .pdf-title {
        font-size: 14px;
    }
    
    .pdf-details {
        font-size: 11px;
    }
}